Return Data from child form to parent form

  • Thread starter Thread starter Ryu
  • Start date Start date
Hi Ryu,

There is no native property or controls to return a value from a child form
to parent form in C#, you will be required
to do so programmatically.You can write a function in the child form that
returns the desired value.
You can then create a property that can hold that value and then the parent
form can make a call as follows :

childformname.PropertyName

HTH

Mona
 
Ok, Thanks. Will try that
Mona (Grapecity) said:
Hi Ryu,

There is no native property or controls to return a value from a child
form
to parent form in C#, you will be required
to do so programmatically.You can write a function in the child form that
returns the desired value.
You can then create a property that can hold that value and then the
parent
form can make a call as follows :

childformname.PropertyName

HTH

Mona
 
Back
Top