Thank you very much for your tip. It works very well. I still have small
problem to reset the image control when there is no record in subform (the
image control still retain last photo).
SF
> From your description, it sounds like the subform has more than one record
> when the combobox is selected. Then you want to display an image on the
[quoted text clipped - 28 lines]
>>
>> SF
Damon Heron - 26 May 2008 18:48 GMT
Well, if you are sure the field that has the source path is blank, then use:
If Not IsNull(Me.Field1) Then
Me.Parent!Image1.Picture = Me.Field1
Else
Me.Parent!Image1.Picture = ""
End If
Otherwise, you will have to have some error handling routines to catch
problems with the address paths.
Damon
> Thank you very much for your tip. It works very well. I still have small
> problem to reset the image control when there is no record in subform (the
[quoted text clipped - 34 lines]
>>>
>>> SF
Jan Baird - 27 May 2008 20:51 GMT
Jan Baird is out of the country until September 20. Every effort will be
made to respond to messages, but please be patient.