eramgarden
Contributor
- Joined
- Mar 8, 2004
- Messages
- 579
Originally from http://www.xtremedotnettalk.net/showthread.php?t=77613
I did this:
In MainForm (parent form), when the form is first loaded :
Also created a routine to enable the menus:
In child form
I set debug. It DOES go thru that routine but still wont enable!!
Any ideas??
I did this:
In MainForm (parent form), when the form is first loaded :
Code:
mnuView.Enabled = false;
Also created a routine to enable the menus:
Code:
public void enableMenus()
{
mnuView.Enabled= true;
}
In child form
Code:
frmMDIMain mainframe = new frmMDIMain();
mainframe.enableMenus();
I set debug. It DOES go thru that routine but still wont enable!!
Any ideas??
Last edited by a moderator: