-
I have a WebBrowser Control on my form and I make it navigate to http://www.hotmail.com/Inbox for example but then I want it to navigate to http://www.hotmail.com/compose without doing this
Browser.Navigate ("http://www.hotmail.com/Compose")
Because when I put in the whole address, it logs out of my account!
-
First off, don't use the ( ) parenthesis.
Code:
Browser.Navigate ("http://www.hotmail.com/Compose")
'TO:
Browser.Navigate "http://www.hotmail.com/Compose"
And you are suppose to always log in, it usually requires that you log in, even if you leave the page, you must log in again. That's just the way Hotmail's security works.
-
but just for the record. If I want to change directories on a server, do I have to type in the whole address or is there a way to go to the directory just by it's name!!!