Example #1
0
        private void btnnuevo_MouseUp(object sender, MouseEventArgs e)
        {
            tool.agrandarg(btnnuevo);
            Form f = new info_paciente();

            f.ShowDialog();
        }
Example #2
0
 void MostrarPacienteSeleccionado()
 {
     try
     {
         menu_principal.PacienteSeleccionado = dgvPacientes.CurrentRow.Cells[0].Value.ToString();
         menu_principal.Realizó       = true;
         info_paciente.CargarPaciente = true;
         Form f = new info_paciente();
         f.ShowDialog();
     }
     catch
     {
         tool.MensajeNormal("Seleccione un paciente o presione [SALIR] ", "Selección de Paciente");
     }
 }
Example #3
0
        private void btnagregar_Click(object sender, EventArgs e)
        {
            Form f = new info_paciente();

            f.ShowDialog();
        }