Esempio n. 1
0
 private void manejador_de_evento_botones_generados(object sender, EventArgs e)
 {
     Button fuente = (Button)sender;
     nro = fuente.Name;
     nombre12 = fuente.Text;
     int d = nombre12.LastIndexOf(" ");
     string nombre13;
     if (d != -1)
     {
         nombre13 = nombre12.Substring(0, d);
         if (nombre13 == "PADEL")
         {
             Turno frm = new Turno(nro, nombre12, nombre13, caja,fecha);
             frm.ShowDialog();
         }
         else
         {
             adicion1 frm = new adicion1(nro, nombre12, nombre13, "", "",fecha);
             frm.ShowDialog();
         }
     }
     else
     {
         Consumo_Interno frm = new Consumo_Interno(nro,fecha);
         frm.ShowDialog();
     }
 }
Esempio n. 2
0
 private void button1_Click(object sender, EventArgs e)
 {
     lolo = lala + "1";
     if (j1.BackColor == Color.GreenYellow)
     {
         Jugador frm1 = new Jugador();
         frm1.ShowDialog();
         jugnom = frm1.devolver();
         if (jugnom != "" && jugnom != null)
         {
             adicion1 frm = new adicion1(lolo, jugnom.ToUpper(), nombre13, "j1", jugnom.ToUpper(), fecha);
             frm.ShowDialog();
         }
         else
         {
             adicion1 frm = new adicion1(lolo, j1.Text.ToUpper(), nombre13, "j1", "Jugador 1",fecha);
             frm.ShowDialog();
         }
     }
     else
     {
         adicion1 frm = new adicion1(lolo, j1.Text.ToUpper(), nombre13, "j1", j1.Text.ToUpper(),fecha);
         frm.ShowDialog();
     }
 }