private void DataGridPacientes_DoubleClick(object sender, EventArgs e) { paciente = new Paciente(Convert.ToInt32(dataGridPacientes.CurrentRow.Cells[10].Value)); FormDetallePaciente formDetallePaciente = new FormDetallePaciente(paciente); formDetallePaciente.ShowDialog(); //FormSecundario frm = new FormSecundario(); //Instanciamos el Form que abriremos //frm.txtCodigo.Text = dataGridView1.CurrentRow.Cells[0].Value.ToString(); //frm.txtProducto.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString(); //frm.txtPrecio.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString(); //frm.Show(); //Mostramos el Form que deseamos abrir. }
private void ToolStripAltaPaciente_Click(object sender, EventArgs e) { FormAltaPaciente formAltaPaciente = new FormAltaPaciente(paciente); formAltaPaciente.ShowDialog(); FormDetallePaciente formDetallePaciente = new FormDetallePaciente(paciente); formDetallePaciente.ShowDialog(); pacientesTableAdapter.Fill(integrasensDataSet.Pacientes); pacientesBindingSource.DataMember = "Pacientes"; pacientesBindingSource.DataSource = integrasensDataSet; dataGridPacientes.DataSource = pacientesBindingSource; }