Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do i make a new form appear?

Status
Not open for further replies.

seanbo

Programmer
Jun 6, 2003
407
GB
I have a form with a systems.windows.forms.maintoolbar. a menu item within that tool bar calls this method:

private void menuItem3_Click(object sender, System.EventArgs e){
About myAbout = new About();
}

about is another window form withing the same project. this code doesn't make it appear. is there a show method or something i need?
 
try
myAbout.activate();
or
myAbout.show();
or
myAbout.load();
or some of the above.
 
there was a .show(), ta. i don't know why i didn't see that before. cheers korach.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top