Jump to content

calling child form


Guest jittery

Recommended Posts

Guest jittery

hmm, how do u call a child form from another form??

and how to make the child form to be smaller then the parent such that when i call, the parent form could still be visible at the back?

any ways to pass from child form any variables back to the parent??

Link to comment
Share on other sites

  • 2 weeks later...
hmm, how do u call a child form from another form??

and how to make the child form to be smaller then the parent such that when i call, the parent form could still be visible at the back?

any ways to pass from child form any variables back to the parent??

<{POST_SNAPBACK}>

like in a button event:

   

this.Hide();


ViewForm view = new ViewForm();

DialogResult rs = view.ShowDialog();


this.Show();

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.