I placed an image control on my form and am trying to populate it by a simple click of a button. I will modify the launch and image change later, for now I just want to see the image.ERROR:Object does not support this object or methodI tried it 4 ways (seen below) :
Sub Image
Dim Image1
Set Image1= Applet.Forms("Supports").Pages("Page2").Controls("Image1")
Image1.Value = "C:\Temp\Streetsign_Database_LatLong\Images\R1-3.jpg"
End Sub
Sub Image
Dim Image1
Set Image1= Application.Applets("Custom Settings").Forms("Supports").Pages("Page2").Controls("Image1")
Image1.Value = "C:\Temp\Streetsign_Database_LatLong\Images\R1-3.jpg"
End Sub
Sub Image
Dim Image1
Set Image1= ThisEvent.Object.Pages("Page2").Controls("Image1")
Image1.Value = "C:\Temp\Streetsign_Database_LatLong\Images\R1-3.jpg"
End Sub
Sub Image
Image1.Value = "C:\Temp\Streetsign_Database_LatLong\Images\R1-3.jpg"
End Sub
Any thoughts? Just want to show an image on the form determined by a field value...as I said for now just want to place any image in there....THanks