K KS Jan 2, 2004 #1 How to send the user to a specified URL when clicking on a picturebox ? KS, Denmark
K Klaus H. Probst Jan 2, 2004 #2 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
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
K KS Jan 2, 2004 #3 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 Click to expand...
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 Click to expand...
K KS Jan 2, 2004 #4 How can I enable the 'tool tip' (the yellow box with a text) when pointing the link ? KS, Denmark
K KS Jan 2, 2004 #5 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 Click to expand...
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 Click to expand...