recenntly I've been working on a painting software,
and i need to get information from a sub-form that contain's 3 controls:
- TextBox1 - a TextBox
- OkButton - a Button
- CancelButton - a Button
the main form contains 2 controls:
- Label1 - a Label
- ChangeLabel1TextButton - a Button
That sub-form need to be shown when i press the "ChangeLabel1TextButton" button on my main-form,
than, when you press the "OkButtom" on the sub-form,
the main form need's to set "Label1" text to the text of "TextBox1" textbox on the sub-form.
Images of the forms:
-The forms

-What the forms supposed to do

Hope you could help me!
Thanks anyway : )
Application.DoEvents(), but it wasn't that easy to search for on google either. Thank you! =) (What a coincidence..) – Mario Nov 23 '12 at 15:50INotifyPropertyChangedinterface. bind the label of the Main Form to a string property in that class (using theDataBindingfeature - you can do it in DesignView itself). Set thetextbox data(basically, set the string property on the data binding you created in Main form) from the sub-form (on OK button click). So, whenever the data is set in sub-form, the property will be updated & the main form'sLABELfield will be updated automatically. – Angshuman Agarwal Nov 23 '12 at 16:10