EstadisticasEscuelaFrontEnd.Alumnos.frmAlumnoBuscar.checkData C# (CSharp) Method

checkData() private method

private checkData ( ComboBox combo, Label label ) : bool
combo System.Windows.Forms.ComboBox
label System.Windows.Forms.Label
return bool
        private bool checkData(ComboBox combo, Label label)
        {
            label.Text = "";

            if (combo.SelectedIndex < 0)
            {
                label.Text = "Seleccione Especialidad";

                return false;
            }

            return true;
        }

Same methods

frmAlumnoBuscar::checkData ( ComboBox comboA, ComboBox comboB, Label label ) : bool
frmAlumnoBuscar::checkData ( TextBox textBox, Label label ) : bool