private void checkFirstRun() { // Check if this is our first run or not, which will // call up the modified settings window if (Globals.getSetting("firstRun") == "") { Form PMSettings = new PMSettings(); PMSettings.ShowDialog(this); } }
private void settingsButton_Click(object sender, EventArgs e) { Form PMSettings = new PMSettings(); PMSettings.ShowDialog(this); }