need some quick help thx : how can i access and open form2 from form1 menu item
C#
3
Posts
3
Posters
0
Views
1
Watching
-
in form1 i got menu : File option help open fix form2 fix how can i access fix design window from form1-> menu-> fix. you know, you press and choice fix from option menu in form1 and form2 fix will be opened thx. :)
Read documentation from net on Menu control first, you come to know how to do it.
-
in form1 i got menu : File option help open fix form2 fix how can i access fix design window from form1-> menu-> fix. you know, you press and choice fix from option menu in form1 and form2 fix will be opened thx. :)
Double click on the menu button in your designer. This will create an EventHandler. Inside the EventHandler, put the following code :
private void OpenFix_Click(object sender, System.EventArgs e)
{
Form2 fix = new Form2();
fix.Open();
}