private void button3_Click(object sender, EventArgs e)
 {
     GUI.Recepcion.Agregar_Tallas agregartallasgui = new Agregar_Tallas(this);
     agregartallasgui.label_orden.Text     = textBox4.Text;
     agregartallasgui.label_consumo.Text   = textBox2.Text;
     agregartallasgui.lbl_combinacion.Text = label9.Text;
     agregartallasgui.lbl_tela.Text        = label8.Text;
     agregartallasgui.ShowDialog();
 }
Exemple #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     try
     {
         GUI.Recepcion.Agregar_Tallas agregartallasgui = new Agregar_Tallas(this);
         agregartallasgui.label_orden.Text     = textBox4.Text;
         agregartallasgui.label_consumo.Text   = textBox2.Text;
         agregartallasgui.lbl_combinacion.Text = label9.Text;
         agregartallasgui.lbl_tela.Text        = label8.Text;
         agregartallasgui.ShowDialog();
     }
     catch
     {
         MessageBox.Show("A habido algun error");
     }
 }