I have an Access DB v2000 running on Win Svr 2003. This DB takes user input on a form and then processes it to find a TIF file and show it in the MODI viewer ... code is below. The issue is all of the sudden today I am getting an Err: "runtime error 438 object doesn't support this property or method" on the line of code noted in red below.



Dim currDoc As MODI.Document
Set currDoc = New MODI.Document

currDoc.Create ("E:\DBSvr\file.tif")

DoCmd.OpenForm "frmMainDocLookTif"

[Forms]![frmMainDocLookTif]![MiDocView1].Document = currDoc

Where MiDocView1 is the name of the ActiveX ctrl on the form that is opened above. Like I said it has been working for a couple of years now and all of the sudden today I am getting this error.

Any help or even remote thoughts would be very helpful, thanks.