I have several pictures on a form. When the user needs to see alarger picture, he double clicks the one hw wants. A new form pops up with an enlargement of that photo. This has been working fine. It just quit. Now, all that pops up is a blank form.
The code I am using is:
On Error Resume Next
Dim file As String
file = "C:\Documents and Settings\auheatw1\my _ Documents\RCFA SP\Pictures\" & Me!Picture1
Forms![frmLargePicture]!picture.Properties("Picture") = file
DoCmd.OpenForm "frmLargePicture"
Picture1 is the file name of the picture. Any help would be appreciated.
Thanks
The code I am using is:
On Error Resume Next
Dim file As String
file = "C:\Documents and Settings\auheatw1\my _ Documents\RCFA SP\Pictures\" & Me!Picture1
Forms![frmLargePicture]!picture.Properties("Picture") = file
DoCmd.OpenForm "frmLargePicture"
Picture1 is the file name of the picture. Any help would be appreciated.
Thanks