|
-
Jan 15th, 2005, 10:17 AM
#1
Thread Starter
New Member
Simple browser argument won't work? (Resolved!)
I'm using this code for a simple argument to cycle through 2 pictures via browser in VB5:
Private Sub PicCycle()
If wbrRosePics.LocationName = ("dr001.html") Then
wbrRosePics.Navigate "\bin\pictures\dr002.html"
LblPic.Caption = "2"
ElseIf wbrRosePics.LocationName = ("dr002.html") Then
wbrRosePics.Navigate "\bin\pictures\dr001.html"
LblPic.Caption = "1"
End If
This works on my computer, however it doesn't seem to work on anyone elses or any of my other computers. I have a button that calls PicCycle, but, as I said, it doesn't do anything on anyone elses computer.
The only thing I've found in-common with my friend's computer and my old computers is that the SHDOCVW.dll file is a little bit out of date, while mine is the lastest version available. Is this the problem? If so, how would I go about getting people an updated copy of that file, as it is almost always in use.
Or is there an easier way for me to cycle through my pictures?
I appreciate any help...
Last edited by violethue; Jan 16th, 2005 at 12:29 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|