Subscribe to How-To Geek

Recommended: Click Here to Run a Free Scan for Common PC Errors   [Sponsored Link]

Pass Variables between Windows Forms Windows without ShowDialog()

When you are programming a Windows Forms application, you will invariably need to get variables from a second form window, such as an options form or popup search prompt.

Most of the guides out there will tell you that you have to open the second form with ShowDialog(), which blocks the user from doing anything else until they've closed the second form window. This won't work very well for a find/replace dialog, for instance. It also won't work very well for custom drawn popup forms.

The quick way to pass variables between the forms is using Delegates. You can set an eventhandler for the Closing event of the second form, and handle the event in the first form. This allows you to capture variables before the second form window has closed.

For this exercise, we're going to assume that we have two forms:

MainForm

OptionsForm

We're going to further assume that we've clicked some sort of button that opens the OptionsForm with a Show() method call. Now let's take a look at the magic:

……. snip…….

OptionsForm theform = new OptionsForm();
theform.Closing += new CancelEventHandler(theform_Closing);
theform.Show();

}

private void theform_Closing(object sender, CancelEventArgs e)
{

   OptionsForm theform = (OptionsForm)sender;

   // Grab the variable from the options form. The options form should set this variable before it closes, and the variable should be marked as public.
   string localvar = theform.thestringvariable;

}

 

That's all there is to it.

The Geek is the founder of How-To Geek and a geek enthusiast. When he's not coming up with great how-to articles, he's probably writing at his personal blog. This article was written on 09/20/06 and tagged with: Programming, C#

Leave a Comment




Leave your friendly comment here. If you have a computer help question, leave it on the forums instead.

Note: Your comment may not show up immediately on the site.

Copyright © 2006-2008 HowToGeek.com. All Rights Reserved.