assuming you got 2 forms:
frmPost
frmInput (has public control "txtName" and "txtMail")
then in frmPost you can get value of "txtName"or"txtMail" by this:
private void btn_Click(object sender, System.EventArgs e)
{
frmInput myForm=new frmInput ();
myForm.ShowDialog(this);
this.user_name=myForm.txtName.Text;
this.user_mail=myForm.txtMail.Text;
}
"Philippe" <(E-Mail Removed)> дÈëÏûÏ¢
news

025F2D7-9241-42E2-BE8D-(E-Mail Removed)...
> hi everybody,
>
> I let the user enter values in a Child Form.
> How can I post those values back to the MDIParent Form (which uses these
> values) ?
>
> By the way, is it possible to access Public MDIParent variables in a Child
> Form ??
>
> Help appreciated,
>