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?
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?