Hi, here's a really easy question.
How do I save different versions of my programs in VB6.
It seems like it is autosaving my forms... and I have
many of them in one project. I would like to save
backup projects, various versions.
Thank you,
David Brook
BTW have you tried :
will allow you to navigate many pages without stopping
after each one.
dim wait as boolean
for i=1 to numpages
wait=true
while wait
doevents
WB.navigate2 url(i)
wend
Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
wait = False
End Sub
This was stumping me majorly..
How do I save different versions of my programs in VB6.
It seems like it is autosaving my forms... and I have
many of them in one project. I would like to save
backup projects, various versions.
Thank you,
David Brook
BTW have you tried :
will allow you to navigate many pages without stopping
after each one.
dim wait as boolean
for i=1 to numpages
wait=true
while wait
doevents
WB.navigate2 url(i)
wend
Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
wait = False
End Sub
This was stumping me majorly..