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()
///
 
Back
Top