private void modificarPacienteToolStripMenuItem_Click(object sender, EventArgs e) { this.Hide(); ModifcacionPaciente a = new ModifcacionPaciente(); a.Show(); }
private void modificarPacienteToolStripMenuItem_Click(object sender, EventArgs e) { this.Hide(); ModifcacionPaciente a = new ModifcacionPaciente(); a.Show(); Base_de_datos.paca = 0; Base_de_datos.nombrePacientes.Clear(); Base_de_datos.cantidadPacientes.Clear(); }
private void btnModificar_Click(object sender, EventArgs e) { int selectedrowindex = dataGridView1.SelectedCells[0].RowIndex; DataGridViewRow selectedRow = dataGridView1.Rows[selectedrowindex]; Base_de_datos.Cod = Convert.ToString(selectedRow.Cells[0].Value); this.Hide(); ModifcacionPaciente a = new ModifcacionPaciente(); a.Show(); }