Hi,
On my forms, it is required to display images of the site according to a field [SiteID]. Since the total file size of the images is far too big(>2GB)to store as an OLE object. I have adopted this to apporach
Private Sub Form_Current()
Me!Image1.picture = "C:\My Pictures\" & Me![SITEID] & "-1.jpg"
End Sub
However i do not know how to upon 'double-clicking' to open this thumbnail where i'm able to"
1.)view it as a blown up image as it was stored,
or
2.)be opened by an external program that can zoom in for details.
Anyone with any suggestion would be most appreceiated.
Cheers!
On my forms, it is required to display images of the site according to a field [SiteID]. Since the total file size of the images is far too big(>2GB)to store as an OLE object. I have adopted this to apporach
Private Sub Form_Current()
Me!Image1.picture = "C:\My Pictures\" & Me![SITEID] & "-1.jpg"
End Sub
However i do not know how to upon 'double-clicking' to open this thumbnail where i'm able to"
1.)view it as a blown up image as it was stored,
or
2.)be opened by an external program that can zoom in for details.
Anyone with any suggestion would be most appreceiated.
Cheers!