Hi,
I have a form with thumbnails. When I click on a thumbnail I want to see the full size version of the image. The only solution I could think of was that clicking on a thumbnail would open another form with an image control to display the full size image. I can open a new form with this code:
newFormName = frmBigPic
ThisDataBaseDocument.CurrentController.Connect()
ThisDatabaseDocument.CurrentController.loadComponent(ObjTypeWhat, newFormName, FALSE)
But I couldn’t find how to pass the URL of the image to the second form, nor how to receive the URL in the second form.
Any ideas?
Thanks!