private void button1_Click(object sender, EventArgs e) { try { if (listBox1.SelectedItems.Count > 0 && turnoSeleccionado != null) { if (new BLLTratamiento().existeTratamientoActivo(turnoSeleccionado.Paciente, turnoSeleccionado.Fecha)) { TratamientoActual tratamientoActual = new TratamientoActual(turnoSeleccionado); tratamientoActual.MdiParent = this.ParentForm; tratamientoActual.Show(); } else { Mediciones medicionesForm = new Mediciones(turnoSeleccionado); medicionesForm.MdiParent = this.ParentForm; medicionesForm.Show(); } } else { MessageBox.Show(NuSmartMessage.formatearMensaje("MisTurnos_messagebox_seleccione_turno")); } }catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void TratamientoActual_button_nueva_medicion_Click(object sender, EventArgs e) { Mediciones mediciones = new Mediciones(turno, this); mediciones.MdiParent = this.ParentForm; mediciones.Show(); }