Click here to Skip to main content
15,885,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm a very beginner in programming.
I dont know how to connect two forms.

Eg. in VB we use form2.show can you get me.
Posted
Updated 1-Sep-10 4:31am
v4
Comments
Dalek Dave 1-Sep-10 10:31am    
Need more.
What actually is the question?

The .Net framework is the .Net framework. If a merthod is available for VB.Net, it's also available for any other .Net language. The ony differences between languages is syntactic in nature. For instance, c# would be like this:

form.Show();
 
Share this answer
 
I dont know what exactly you want when you write
(connect), but if you want to call another form
do this:
FormName randontext = new FormName();
randontext.ShowDialog();


obs: this code was write in c sharp
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900