R
Richard Pieri
I am trying to put a picture into a custom contact form I
have done whats listed at
http://www.slipstick.com/dev/formpicture.htm
but I keep getting a Syntex error Line No:12
is there a problem with the way the code is posted or did
I do something wrong?
Form is IPM.Contact.Employee info(Published in
Organizational Library)
2nd page of form is named Picture
Image control is named imgPicture(in name field in
advanced properties)
Code entered is below
Thank You in advance
Function Item_Open()
Set objInsp = Item.GetInspector
Set objPage = objInsp.ModifiedFormPages("Picture")
Set imgPicture = objPage.Controls("imgPicture")
If Item.BillingInformation <> "" Then
imgPicture.Picture = _
LoadPicture(Item.BillingInformation)
End If
End Function
have done whats listed at
http://www.slipstick.com/dev/formpicture.htm
but I keep getting a Syntex error Line No:12
is there a problem with the way the code is posted or did
I do something wrong?
Form is IPM.Contact.Employee info(Published in
Organizational Library)
2nd page of form is named Picture
Image control is named imgPicture(in name field in
advanced properties)
Code entered is below
Thank You in advance
Function Item_Open()
Set objInsp = Item.GetInspector
Set objPage = objInsp.ModifiedFormPages("Picture")
Set imgPicture = objPage.Controls("imgPicture")
If Item.BillingInformation <> "" Then
imgPicture.Picture = _
LoadPicture(Item.BillingInformation)
End If
End Function