Changing a Controls property on a child form from the parent?
Hi All,
I have a MDI app that uses a baseform for all the child forms. The baseform has a Tab Control that the modfiers for it and all the tabs are set to Protected. Depending on what menu item the user selects I want to change the text for the tabs in the Tab Control. How can I do this in the parent form?
Thanks In Advance...
alejandro.riveraPosted Dec 21, 2004, 11:26 AM
bilnaadPosted Dec 17, 2004, 6:02 PM
alejandro.riveraPosted Dec 17, 2004, 4:34 PM
protected void MDIChildNew_Click(object sender, System.EventArgs e){ Form2 newMDIChild = new Form2(); // Set the Parent Form of the Child window. newMDIChild.MdiParent = this; // Display the new form. newMDIChild.Show(); }