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
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