Starting URL from VB.NET 2002

  • Thread starter Thread starter KS
  • Start date Start date
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles PictureBox1.Click

Dim p As New Process

p.StartInfo.UseShellExecute = True
p.Start("http://www.vbbox.com/")

End Sub
 
Works fine - thanks !

KS, Denmark

Klaus H. Probst said:
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles PictureBox1.Click

Dim p As New Process

p.StartInfo.UseShellExecute = True
p.Start("http://www.vbbox.com/")

End Sub
 
How can I enable the 'tool tip' (the yellow box with a text) when pointing
the link ?

KS, Denmark
 
Back
Top