I have a project with a Parent Form and Child Form and I want to send data(a field) from the parent form to the child form. Can anyone give me an example of the code to do that?
Thanks
|
~ Б0ЯИ Τ0 С0δЭ ~
|
![]() |
| 14May2009,19:54 | #2 |
|
Hmm ..
. This will work :Setup : (1) Parent and Child are two forms. (2) Parent form has a text-box named "txtParentData" where text is entered. (3) Child form has a text-box named "txtChildData" where the text from Parent is displayed. (4) Parent form has a button named "btnShowChild" that shows the child form. (5) Child form has a button named "btnExtractData" which extracts entered text from parent form. Code : Code: c#
|


. This will work :