Results 1 to 2 of 2

Thread: Link

  1. #1

    Thread Starter
    Addicted Member kikelinus's Avatar
    Join Date
    Nov 2000
    Posts
    219

    Thumbs up

    How can I add a link to my project?
    For example if I want to put... E-mail me: [email protected]

  2. #2
    Guest
    Use the ShellExecute api function.

    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 Const SW_SHOWNORMAL = 1
    
    Usage
    
    ShellExecute Me.hwnd, vbNullString, "mailto:[email protected]", _
    
    vbNullString, "c:\", SW_SHOWNORMAL

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