CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 1999
    Location
    Québec (Canada)
    Posts
    210

    Open Helpfile (Index.html)

    I will like to know how can I open the file (Index.html) with code VB.

    Thanks
    Redg



  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Open Helpfile (Index.html)

    Take a look at http://codeguru.developer.com/vb/articles/1997.shtml - unless you mean 'open the file index.htm and read from it'.... ?


    Chris Eastwood

    CodeGuru - the website for developers
    http://codeguru.developer.com/vb

  3. #3
    Guest

    Re: Open Helpfile (Index.html)

    if you do the following

    dim mypage as string
    mypage="full pathname of whatever Html File you want to open"
    ShellExecute 0, vbNullString,mypage, vbNullString, vbNullString, 1



    this will open the htlm file in whatever is the default browser on your machine


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

Featured