Beispiel #1
0
        private void btnEnfermera_Click(object sender, EventArgs e)
        {
            tipo = "E";
            FormListado frmListado = new FormListado(conn, tipo);

            frmListado.Show();
        }
Beispiel #2
0
        private void btnPaciente_Click(object sender, EventArgs e)
        {
            tipo = "P";
            FormListado frmListado = new FormListado(conn, tipo);

            frmListado.Show();
        }
Beispiel #3
0
        private void btnMedico_Click(object sender, EventArgs e)
        {
            tipo = "M";
            FormListado frmList = new FormListado(conn, tipo);

            frmList.Show();
        }
Beispiel #4
0
        private void btnConsultorio_Click(object sender, EventArgs e)
        {
            tipo = "C";
            FormListado frmList = new FormListado(conn, tipo);

            frmList.Show();
        }
Beispiel #5
0
        private void procConsulta_Click(object sender, EventArgs e)
        {
            String      tipo    = "T";
            FormListado frmList = new FormListado(conn, tipo);

            frmList.MdiParent = this;
            frmList.Show();
        }