All I want to do is change to a different directory in a webbrowser. Ex: I'm in http://www.hotmail.com/cgi-bin/mail?...32=11299473257 and I want to go to http://www.hotmail.com/cgi-bin/compose How do I do that!
Printable View
All I want to do is change to a different directory in a webbrowser. Ex: I'm in http://www.hotmail.com/cgi-bin/mail?...32=11299473257 and I want to go to http://www.hotmail.com/cgi-bin/compose How do I do that!
You mean the WebBrowser control (Microsoft Internet Controls)?
then just do
not sure if that's what ya wantCode:WebBrowser1.Navigate "http://www.hotmail.com/cgi-bin/mail?sfsiiu00320077032=11299473257"
'if you want to move to the other site
WebBrowser1.Navigate "http://www.hotmail.com/cgi-bin/compose"