private void btnDecompiled_Click(object sender, EventArgs e)
        {
            mainCode mainCodes = new mainCode();

            mainCodes.decompileButtonAction(Properties.Settings.Default.wiigamespath, cbxGames, btnDecompiled);
            mainCodes.checkIfDecompiled(Properties.Settings.Default.wiigamespath, cbxGames, btnDecompiled, btnOpenPatch, btnLaunch, pbxCoverArt, pbxRegion);
        }
 private void dolphiiMain_Load(object sender, EventArgs e)
 {
     if (Properties.Settings.Default.firstrun == true) //if this is the first time a user is using the program, we'll ask him/her to fill in the settings
     {
         firstRun settings = new firstRun();           // standard C# stuff
         settings.Show();
         MessageBox.Show("It looks like this is the first time you're running this program. Please fill in all settings.");
     }
     else
     {
         mainCode populate = new mainCode();                                             // if not, just populate all the lists
         populate.populateGamesList(Properties.Settings.Default.wiigamespath, cbxGames); //game list
         populate.generateXML(Properties.Settings.Default.riivopath, cbxXML);            //XML list
     }
 }
        private void cbxGames_SelectedIndexChanged(object sender, EventArgs e)
        {
            mainCode mainCodes = new mainCode();

            mainCodes.checkIfDecompiled(Properties.Settings.Default.wiigamespath, cbxGames, btnDecompiled, btnOpenPatch, btnLaunch, pbxCoverArt, pbxRegion);
        }