K
KS
How to send the user to a specified URL when clicking on a picturebox ?
KS, Denmark
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
KS said:How can I enable the 'tool tip' (the yellow box with a text) when pointing
the link ?
KS, Denmark
picturebox