Help wanted
-
Hello Friends I have a main form in which there is a file menu strip. What I want to do is that when ever I click a menu strip of that menu a new for will be shown and all the menu strip will be disabled. And After I close the new form all the menu strips of the main form will be available again. What Can I write in form Closed method of the 2nd form? Can any one help me?
-
Hello Friends I have a main form in which there is a file menu strip. What I want to do is that when ever I click a menu strip of that menu a new for will be shown and all the menu strip will be disabled. And After I close the new form all the menu strips of the main form will be available again. What Can I write in form Closed method of the 2nd form? Can any one help me?
-
You can do like this.. ON MDI Form public bool MenuItemControl { set { this.newToolStripMenuItem.Enabled = value; } } ON FORM CLOSED EVENT MDIParentForm MdiPF = (MDIParentForm)this.MdiParent;
Thank U.