hi all
In parent form i put the button property as enable false and how to enable the buttons from child form in C#.net(windows forms)
In parent form i put the button property as enable false and how to enable the buttons from child form in C#.net(windows forms)
Posted Oct 19, 2010, 2:37 AM
Please use this code in your child form.
Form frm = this.ParentForm;
frm.Controls["button1"].Enabled = true;
frm.Refresh();