Image linking problem

fsuhare

New member
Local time
Today, 07:56
Joined
Aug 20, 2002
Messages
6
this is my code that i took from someone elses post

If Not IsNull(Me![ImagePath]) Then
Me.ImagePane.OLETypeAllowed = 1
Me.ImagePane.SourceDoc = Me![ImagePath]
Me.ImagePane.Action = 0
End If

I am trying to figure out what control I should have ImagePane be. I tryed using an unbound object frame, but access tells me that the embedded property is read only and will not allow me to make it linked. I tryed an Image object and it does not match any of the propertys from the above script.

I appreciate any time spent on this problem
 
Use the Unbound Object Frame
 
I tryed the Unbound Object Frame

I tryed the Unbound Object Frame. It would not let me change the embedded property since it gave me any error that it was read only, which causes me to not be able change it to linked.

Is there any thing special I need to do when I put the Frame on the Form?
 
Me.ImagePane.Action 'Can not retrieve Value'

the Me.ImagePane.Action is giving my script an error. It is telling me that I can not assign a value to it. I worked though the linking problem. I am getting kicked out of the code on this error however.

Thanks a bunch for any help.
 
Thanks for the help

Thanks for all the help everybody. I got it working.
 

Users who are viewing this thread

Back
Top Bottom