load forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have form1 and form2 and button1 .... i want when i press button1 form 2 sho
and i don't know how
i
 
Dim YourForm2 as Form2
YourForm2 = New Form2
YourForm2.Show

or

YourForm2.ShowDialog

Richard
 
* =?Utf-8?B?QW1yIEVsc2hhemx5?= said:
i have form1 and form2 and button1 .... i want when i press button1 form 2 show
and i don't know how

\\\
Call (New Form2()).ShowDialog()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top