pat_nospam
Registered User.
- Local time
- Today, 15:52
- Joined
- Oct 14, 2003
- Messages
- 151
Ok, I'm using the following code (which works fine on unbound pictures in single form view):
But, for my continuous form, the first picture loaded populates all of the txtPicture fields, making it the same photo over and over again. Is there a method to make it define per form, so I get a different photo with each form break in the continous form?
Thanks in advance for any insight,
Pat
Code:
On Error GoTo err_Form_Current
If Not Me!Picture = "" Or Not IsNull(Me!Picture) Then
Me!txtPicture.Visible = True
Me!txtPicture.Picture = "K:\staff\" & Me!Picture
Else
Me!txtPicture.Visible = False
End If
exit_Form_Current:
Exit Sub
err_Form_Current:
MsgBox Err.Description
Resume exit_Form_Current
But, for my continuous form, the first picture loaded populates all of the txtPicture fields, making it the same photo over and over again. Is there a method to make it define per form, so I get a different photo with each form break in the continous form?
Thanks in advance for any insight,
Pat