Exemplo n.º 1
0
 private void button6_Click(object sender, EventArgs e)
 {
     if (textBox2.Text == "")
     {
         MessageBox.Show("PLEASE SELECT ANY FILE");
     }
     else
     {
         if (this.button1.Text == "PAUSE")
         {
             this.button1.BackColor = System.Drawing.Color.DarkOliveGreen;
             this.button1.Text      = "PLAY";
             flag = 1;
             form2.tymstopper();
         }
         form2.image();
     }
 }