|
-
Sep 30th, 2000, 08:13 PM
#1
Thread Starter
Fanatic Member
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!
Visual Basic 6.0
Visual C++ 5
Delphi 5

-
Sep 30th, 2000, 08:19 PM
#2
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.
-
Sep 30th, 2000, 08:22 PM
#3
Thread Starter
Fanatic Member
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!!!
Visual Basic 6.0
Visual C++ 5
Delphi 5

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
|