Example #1
0
 //AGREGAR PACIENTE
 private void OpenAgregarPaciente(object sender, EventArgs e)
 {
     frm_Menu.Hide();
     frm_AgregarPaciente.Show();
     frm_AgregarPaciente.EstadoInicial();
 }
 private void Limpiar(object sender, EventArgs e)
 {
     frm_AgregarPaciente.EstadoInicial();
 }
Example #3
0
 private void CerrarAgregarPaciente(object sender, EventArgs e)
 {
     frm_AgregarPaciente.Close();
     frm_AgregarPaciente.EstadoInicial();
     frm_MenuPrincipal.Show();
 }