Beispiel #1
0
        private void gruposToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form ventana = new Form();

            if (BLL.GruposBLL.GetList().Count() > 0)
            {
                ventana = new ConsultaGrupos();
            }
            else
            {
                var Mensaje = "No hay grupos registrados registre\nalgun grupo para continuar";

                var est = BLL.EstudiantesBLL.GetList().Count();

                if (est == 0)
                {
                    Mensaje = "No hay estudiantes registrados y por tal motivo tampoco hay\nestudiantes registrados registre alguno para continuar";
                    ventana = new RegistroEstudiantes();
                }
                else
                {
                    ventana = new Registros.RegistroGrupos();
                }

                MessageBox.Show(Mensaje, "-- AVISO --", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            ventana.MdiParent = this;
            ventana.Show();
        }
Beispiel #2
0
        private void estudiantesToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            LimpiarContenedor();
            var RegEst = new RegistroEstudiantes();

            RegEst.MdiParent = this;
            RegEst.Show();
        }
Beispiel #3
0
        private void estudiantesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form Registro = new Form();

            if (BLL.EstudiantesBLL.GetList().Count() > 0)
            {
                Registro = new ConsultaEstudiantes();
            }
            else
            {
                MessageBox.Show("No hay estudiantes registrados\nRegistre alguno antes de continuar", "-- AVISO --", MessageBoxButtons.OK, MessageBoxIcon.Information);
                Registro = new RegistroEstudiantes();
            }
            Registro.MdiParent = this;
            Registro.Show();
        }