help ^^

05/11/2010 15:39 xXxXMichiXxXx#1
hallo,

ich hab ein prob. ich hab mal vor nem jahr VB programmieren gelernt nur jetz wo ich es mal wieder brauch kanns ich es nicht mehr so gut XD also ich will in einen button eine webseite einfügen also Button drücken = ww.bei spiel.de ^^

danke im vorraus
05/11/2010 18:15 musicinstructor#2
Process.Start("www.beispiel.de")
05/12/2010 16:46 Demon-777#3
Oder so :

Code:
Private Sub OpenUrl(ByVal url As String)
        Dim extern As New System.Diagnostics.Process()
        extern.StartInfo.FileName = url
        extern.Start()
End Sub