Results 1 to 3 of 3

Thread: Link

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2000
    Posts
    84
    How do I make a link ( or bookmark) from my vb program to be opened in Netscape or Explorer ??

  2. #2
    Guest
    Code:
    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 GoToWeb(TheURL As String)
    
    Call ShellExecute(0&, vbNullString, URL, vbNullString, "C:\", 1)
    
    End Sub
    [Edited by denniswrenn on 08-16-2000 at 09:41 AM]

  3. #3
    Guest
    oops... hehe

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