Ejemplo n.º 1
0
 private void BouttonDemarrer_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(SafeFileName.Text) && !String.IsNullOrEmpty(textBoxTailleEcran.Text))
     {
         driver.createRender(int.Parse(textBoxTailleEcran.Text), ofd.FileName, Desynchronise.Checked);
         this.Dispose();
     }
     else
     {
         System.Windows.Forms.MessageBox.Show("La vidéo ou la taille n'a pas été trouvé");
     }
 }
Ejemplo n.º 2
0
 private void BouttonDemarrer_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(TextBoxImage1.Text) && !String.IsNullOrEmpty(TextBoxImage2.Text) && !String.IsNullOrEmpty(TextBoxImage3.Text) && !String.IsNullOrEmpty(TextBoxImage4.Text) && !String.IsNullOrEmpty(textBoxTailleEcran.Text))
     {
         driver.createRender(int.Parse(textBoxTailleEcran.Text), TextBoxImage1.Text, TextBoxImage2.Text, TextBoxImage3.Text, TextBoxImage4.Text);
         this.Dispose();
     }
     else
     {
         System.Windows.Forms.MessageBox.Show("Certaines images ou la taille n'ont pas été detecté.");
     }
 }