private void ProductoTB_Click(object sender, EventArgs e) { if (!ProductoTB.ReadOnly) { VentanaTeclados.AbrirCalculadora(this, ProductoTB); } }
private void GradTB_Click(object sender, EventArgs e) { if (!GradTB.ReadOnly) { VentanaTeclados.AbrirCalculadora(this, GradTB); } }
private void StartB_Click(object sender, EventArgs e) { if (OrdenTB.Text == "" || LoteTB.Text == "" || ProductoTB.Text == "" || ClienteTB.Text == "" || GradTB.Text == "" || CapacidadTB.Text == "") { MessageBox.Show("Faltan campos por introducir"); VentanaTeclados.AbrirCalculadora(this, OrdenTB); } else { Inicio = (Inicio) ? false : true; StartB.Text = (Inicio) ? "Start" : "Pause"; StartB.BackColor = (Inicio) ? Color.DarkSeaGreen : Color.IndianRed; OrdenTB.ReadOnly = Inicio; LoteTB.ReadOnly = Inicio; ProductoTB.ReadOnly = Inicio; GradTB.ReadOnly = Inicio; ClienteTB.ReadOnly = Inicio; CapacidadTB.ReadOnly = Inicio; LeerQR(); } }
private void CapacidadTB_Click(object sender, EventArgs e) { VentanaTeclados.AbrirCalculadora(this, CapacidadTB); }