Hi there,
I've looked at numerous posts out there but have yet to find a solution to this. I have an image control on a main form that shows a linked jpeg thumbnail. Image controls are also on 2 subforms that also show linked thumbnails.
When the user initially selects a jpeg from the Windows API Common Dialog Control, the image needs to immediately appear. I have the following code on the main form:
On Error GoTo err_Form_Current
If Not Me!Thumbnail_PathandFile = "" Or Not IsNull(Me!Thumbnail_PathandFile) Then
Me!Picture.Picture = GetPathPart & Me!Thumbnail_PathandFile
Else
Me!Picture.Picture = ""
End If
When the user goes to the next or previous record and then back to the one they just linked the jpeg to, the jpeg appears just fine. The images on the subforms are the same way--only appear after the user goes to the next or previous record and then back.
Any advice/assistance would be greatly appreciated.
Thanks much,
Arnold
I've looked at numerous posts out there but have yet to find a solution to this. I have an image control on a main form that shows a linked jpeg thumbnail. Image controls are also on 2 subforms that also show linked thumbnails.
When the user initially selects a jpeg from the Windows API Common Dialog Control, the image needs to immediately appear. I have the following code on the main form:
On Error GoTo err_Form_Current
If Not Me!Thumbnail_PathandFile = "" Or Not IsNull(Me!Thumbnail_PathandFile) Then
Me!Picture.Picture = GetPathPart & Me!Thumbnail_PathandFile
Else
Me!Picture.Picture = ""
End If
When the user goes to the next or previous record and then back to the one they just linked the jpeg to, the jpeg appears just fine. The images on the subforms are the same way--only appear after the user goes to the next or previous record and then back.
Any advice/assistance would be greatly appreciated.
Thanks much,
Arnold