Link to home
Start Free TrialLog in
Avatar of tryokane
tryokane

asked on

linking to a new from on vb.net

vb.net i want to link a button to a new form on the same project to another form on the same project what code can i use to do this
Avatar of doraiswamy
doraiswamy
Flag of India image

by link, do you mean, when you click this button, it should raise an event on the other form?

Avatar of tryokane
tryokane

ASKER

no i mean i just want to click on the button and go to that form
ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
i created another folder and a form in it, now i want to link to that form
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I actually want to do something like this

button1_Click
GoTo(A Form i created)
You need a reference to the form you created and then do the following.

    ReferenceToForm.Activate()
any code samples on this?
thx solved it though