Control Menu on MDI?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I have a MainMenu with multi MenuItem on it. I want to disable that menuitem when that childform open. And enable that menuitem when childform close. How can I control it. Plz help me Thanks a lot.
-
I have a MainMenu with multi MenuItem on it. I want to disable that menuitem when that childform open. And enable that menuitem when childform close. How can I control it. Plz help me Thanks a lot.
Build one function in MDI like this Public Sub SetMenu(Enable as boolean) mnuITem.enabled=enable end sub and call this from mdiChild like me.Parent.SetMenu(True)