private void Tbx_CR6_TextChanged(object sender, EventArgs e) { if (Tbx_CR6.Text != "") { Btn_Calcular.Enabled = true; double CR6 = Convert.ToDouble(Tbx_CR6.Text); if (CR6 > 4) { MessageBox.Show("Favor Introducir valores del 1-4"); Tbx_Nota6.Clear(); } else { if (Tbx_CR6.Text.Length == 1 && Tbx_CR6.Text != "0") { Tbx_Nota6.Focus(); } } } else { Tbx_CR6.Focus(); Tbx_CR6.Text = "0"; Tbx_CR6.SelectAll(); } }
private void Tbx_Nota5_TextChanged(object sender, EventArgs e) { if (Tbx_Nota5.Text != "") { Btn_Calcular.Enabled = true; double Nota5 = Convert.ToDouble(Tbx_Nota5.Text); if (Nota5 > 100) { MessageBox.Show("Favor Introducir valores del 0-100"); Tbx_Nota5.Clear(); } else { if (Tbx_Nota5.Text.Length == 4 || Tbx_Nota5.Text == "100") { Tbx_CR6.Focus(); } } } else { Tbx_Nota5.Focus(); Tbx_Nota5.Text = "0"; Tbx_Nota5.SelectAll(); } }
private void Limpiar_Formulario() { Tbx_Nombre.Clear(); Tbx_Apellido.Clear(); Tbx_CR1.Clear(); Tbx_CR2.Clear(); Tbx_CR3.Clear(); Tbx_CR4.Clear(); Tbx_CR5.Clear(); Tbx_CR6.Clear(); Tbx_CR7.Clear(); Tbx_CR_Total.Clear(); Tbx_Nota1.Clear(); Tbx_Nota2.Clear(); Tbx_Nota3.Clear(); Tbx_Nota4.Clear(); Tbx_Nota5.Clear(); Tbx_Nota6.Clear(); Tbx_Nota7.Clear(); Tbx_CR_Nota1.Clear(); Tbx_CR_Nota2.Clear(); Tbx_CR_Nota3.Clear(); Tbx_CR_Nota4.Clear(); Tbx_CR_Nota5.Clear(); Tbx_CR_Nota6.Clear(); Tbx_CR_Nota7.Clear(); Tbx_CR_Nota_Total.Clear(); Tbx_Base100.Clear(); Tbx_Base4.Clear(); Tbx_Matricula.Focus(); Tbx_Matricula.SelectAll(); }