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
> Hi,
>
> Is there a way to return data from a child form to a parent form using c#?
>
> Thanks
Ryu - 09 Dec 2004 08:26 GMT
Ok, Thanks. Will try that
> Hi Ryu,
>
[quoted text clipped - 19 lines]
>>
>> Thanks