T
TomislaW
How can I enable/disable button on mdi parent form when I click on some
control in activ child form?
control in activ child form?
* "TomislaW said:How can I enable/disable button on mdi parent form when I click on some
control in activ child form?
TomislaW said:I work in C# and I wrote
((Form1)this.Parent).btnNew.Enabled = false;
I can not access Button1 in parent
* "TomislaW said:I work in C# and I wrote
((Form1)this.Parent).btnNew.Enabled = false;
Herfried K. Wagner said:\\\
((Form1)this.MdiParent).btnNew.Enabled = false;
///