Frage wie kann man eine Url öffnen

Dieses Thema im Forum "Programmierung & Entwicklung" wurde erstellt von Ni©o, 14. Juni 2006 .

Schlagworte:
Status des Themas:
Es sind keine weiteren Antworten möglich.
  1. 14. Juni 2006
    Hi Leute


    Wie kann man URL öffnen
     
  2. 14. Juni 2006
    Per ShellExecute:
    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 Form_Load()
     Dim Result&
     Result = ShellExecute(Me.hwnd, "Open", _
     "http://www.google.de", "", App.Path, 1)
    End Sub
    
     
  3. 14. Juni 2006
    Danke weixi2

    10ner ist raus
    CLOSED
     
  4. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.