private void btnHistoriaClinica_Click(object sender, EventArgs e) { if (this.row < 0) { MessageBox.Show("Seleccione un turno"); return; } string idpaciente = this.tabla.Rows[this.row].ItemArray[3].ToString(); this.historiaclinica = new frmAltaHistoriaClinica(this, this.medico, idpaciente); this.Enabled = false; this.historiaclinica.Show(); }
private void btnHistoriaClinica_Click(object sender, EventArgs e) { if (this.row < 0) { MessageBox.Show("Seleccione un turno"); return; } string idpaciente = this.tabla.Rows[this.row].ItemArray[3].ToString(); DateTime D = new DateTime(dtpFecha.Value.Year, dtpFecha.Value.Month, dtpFecha.Value.Day); this.historiaclinica = new frmAltaHistoriaClinica(this, this.medico, idpaciente, D); this.Enabled = false; this.historiaclinica.Show(); this.row = -1; }