Image Code Tweak (1 Viewer)

deagio

Registered User.
Local time
Today, 07:14
Joined
Dec 28, 2004
Messages
17
Hi,

I have a form which displays an Image depending on the URL in a specific field. This works fine, but I now want to display theimages in 'Continuous Forms' mode.

At the moment, the script below only works when you click on the record, but I wanted all the images to appear Automatically. Does anyone know how I could do this. I assume you would only have to tweak this code slightly.

Private Sub Form_Current()
Dim objIE As SHDocVw.InternetExplorer
Dim strURL As String

BmpWebPath_Sig.SetFocus
strURL = Me.BmpWebPath_Sig.Text

Set objIE = Me.WebBrowser.Object
objIE.Navigate strURL
End Sub


Thanks!

James
 

Oldsoftboss

AWF VIP
Local time
Today, 16:14
Joined
Oct 28, 2001
Messages
2,499
Dont spend too much time trying to work this out. It's an Access bug and I have never seen any body achieve what you are trying to do. :(

Dave
 

Users who are viewing this thread

Top Bottom