mdi applications

  • Thread starter Thread starter Cecilia
  • Start date Start date
C

Cecilia

How do I change (e.g. the checked property) of a menu
item of an MDI windows form, from a child window form?
 
Cecilia said:
How do I change (e.g. the checked property) of a menu
item of an MDI windows form, from a child window form?

IMO, this is not good design in most cases. When/why do you want to change
it? Maybe raising an event in the child window caught in the MDI window is
the "better" (because more abstract) solution.
 
Hello,

Cecilia said:
How do I change (e.g. the checked property) of a menu
item of an MDI windows form, from a child window form?

\\\
DirectCast(Me.MdiParent, MainForm).MenuItem1.Checked = True
///

Replace 'MainForm' with the type name of your MDI container.
 
Back
Top