In my application, I need to set the value of the TextBox control in the MDIParent form from one of the event in the child form
I tried this;
public string textboxvalue {
get { return textBox2.Text; }
set { textBox2.Text = value; } }
in the MDIParent and used the following code in the child form event
MDIParent1 mdiparent = new MDIParent1();
mdiparent.textboxvalue = webBrowser1.Url.ToString();
this is not working; kindly help...