Results 1 to 3 of 3

Thread: Browser and navigate

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    879

    Talking

    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


  2. #2
    Guest
    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.

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    879
    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
  •  



Click Here to Expand Forum to Full Width