示例#1
0
        //
        // Alta de un paciente.
        //
        private void altaDeUnPacienteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AltaPacFrm altaPacFrm = new AltaPacFrm(this);

            this.bloqueaUI();
            altaPacFrm.Show();
        }
示例#2
0
        //
        // Boton Alta Paciente
        //
        private void botonAltaPac_Click(object sender, EventArgs e)
        {
            AltaPacFrm pacFrm = new AltaPacFrm(this);

            pacFrm.Show();
            // Bloquea los botones y la barra de menu.
            this.bloqueaUI();
        }