i have an MDI window with a menu. right now i have it set up so that several menu items are disabled. how do i make it so that i can enable these items from a call in another form. i have tried making a public sub in a module but it can't seem to reference the MDI menu object. can i make the menu public somehow? thanks.
----inside the module: -----
Public Sub showReviewOption()
cmdRvwNewProj.Enabled = True
End Sub
-----------------------------
----inside the module: -----
Public Sub showReviewOption()
cmdRvwNewProj.Enabled = True
End Sub
-----------------------------