Call another form

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

Guest

Hi

I created two forms in the same proyect and I want to call
one form from another one but I couldn't find the Show
method. I'm working with C#.

In Visual Basic 6 you can tell the proyect which form use
first.

Regards
 
* said:
I created two forms in the same proyect and I want to call
one form from another one but I couldn't find the Show
method. I'm working with C#.

In your startup form:

\\\
FooForm f = new FooForm();
f.Show()
///
 

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