Hiperlink to a button

How can I create a hyperlink to a button in a form?
[51 byte] By [EduardoD] at [2007-12-24]
# 1

how exactly do you mean "hyperlink to a button" ? Are you able to explain a bit further so we can better assist you?

Are you asking on how to make a hyperlink that when clicked on will launch a link to say, a website?

ahmedilyas at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2

If this is a WIndows Form you can do the following:

Create a Linklabel from the tool box.

Add it's click event:

Private Sub LinkLabel1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkLabel1.Click

cbGo.PerformClick()

End Sub

Then it's simply ButtonName.PerformClick

ReneeC at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 3
Yes
EduardoD at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...