Exemple #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     FirstStart dlg = new FirstStart();
     dlg.ShowDialog();
 }
Exemple #2
0
        private void button2_Click(object sender, EventArgs e)
        {
            FirstStart dlg = new FirstStart();

            dlg.ShowDialog();
        }
Exemple #3
0
 private void Form1_Load(object sender, EventArgs e)
 {
     Debug_menu.Visible = Debugger.IsAttached;
     if(APP_First_Start){
         FirstStart dlg = new FirstStart();
         dlg.ShowDialog();
     }
     try
     {
         if (APP_check_UPD)
         {
             System.Net.WebClient d = new System.Net.WebClient();
             if (Convert.ToInt32(d.DownloadString("https://raw.githubusercontent.com/exelix11/YATA-PLUS/master/PublicVersion.txt")) > APP_Public_version)
             {
                 MessageBox.Show(messages[8]);
             }
         }
     }
     catch {/*Do nothing*/}
 }