예제 #1
0
파일: MnLoad.cs 프로젝트: txFOGGie/3DNUS
 private void main_load_Load(object sender, EventArgs e)
 {
     if (_3DNUS_Material_Edition.Properties.Settings.Default.dev_auto_upd == "1")
     {
         splash_timer.Stop();
         SvcUpd.SvcUpdate();
         tmr_get_upd_stat.Start();
     }
     else
     {
         if (_3DNUS_Material_Edition.Properties.Settings.Default.dev_tour == "")
         {
             Form dv = new dev_tour();
             dv.Show();
             this.Hide();
         }
         else
         {
             splash_timer.Start();
         }
     }
     if (!File.Exists(cd + "\\3DNUS Material Edition.exe.old"))
     {
         File.Delete(cd + "\\3DNUS Material Edition.exe.old");
     }
 }
예제 #2
0
파일: MnMain.cs 프로젝트: txFOGGie/3DNUS
 private void lbl_upd_chck_Click(object sender, EventArgs e)
 {
     tmr_get_upd_stat.Start();
     SvcUpd.SvcUpdate();
 }