Possible Duplicate:
How to pass flag from childform to parent?
Can any body help me to send the values from childForm to parentForm. I have declared an int id variable in parentForm, now I want to send the textbox1.Text value from childForm to that int variable of parentForm.
You can make id a public property and assign the value in child form.
In parent form
In child form