How can open other form

  • Thread starter Thread starter W. Jack
  • Start date Start date
W

W. Jack

Hello,
How can click one button,open other form.Please teach me the source.
Thank you
 
* "W. Jack said:
How can click one button,open other form.

\\\
Dim f As New FooForm() ' Create a new instance of the form.
f.Show() ' Display the form.
///
 
Back
Top