Starting URL from VB.NET 2002

  • Thread starter Thread starter KS
  • Start date Start date
K

KS

How to send the user to a specified URL when clicking on a picturebox ?

KS, Denmark
 
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
 
I found out myself !

KS, Denmark
KS said:
How can I enable the 'tool tip' (the yellow box with a text) when pointing
the link ?

KS, Denmark

picturebox
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top