Example #1
0
 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);
     }
 }
Example #2
0
        private void settingsButton_Click(object sender, EventArgs e)
        {
            Form PMSettings = new PMSettings();

            PMSettings.ShowDialog(this);
        }