Results 1 to 2 of 2

Thread: Opening a web page for viewing

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 1999
    Location
    Atlanta, GA
    Posts
    75

    Post

    I need a quick way of launching a user's default web browser (without necessarily knowing it) to a specific local html document. Any help would be appreciated.

  2. #2
    Addicted Member
    Join Date
    Oct 1999
    Posts
    232

    Post

    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

    Private Sub Command1_Click()

    Call ShellExecute(Me.hwnd, vbNullString, "d:\MyFavoriteLocalPage.html", vbNullString, vbNullString, 0&)

    End Sub

    ------------------
    smalig
    [email protected]
    http://vbcode.webhostme.com/


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