private void ProductoToolStripMenuItem_Click(object sender, EventArgs e) { ConsultarProductos ConPro = new ConsultarProductos(); ConPro.MdiParent = this; ConPro.Show(); }
private void BtnProductos_Click(object sender, EventArgs e) { ConsultarProductos ConPro = new ConsultarProductos(); ConPro.ShowDialog(); if (ConPro.DialogResult == DialogResult.OK) { txtCodigoPro.Text = ConPro.dataGridView1.Rows[ConPro.dataGridView1.CurrentRow.Index].Cells[0].Value.ToString(); txtDescripcion.Text = ConPro.dataGridView1.Rows[ConPro.dataGridView1.CurrentRow.Index].Cells[1].Value.ToString(); txtPrecio.Text = ConPro.dataGridView1.Rows[ConPro.dataGridView1.CurrentRow.Index].Cells[2].Value.ToString(); txtCantidad.Focus(); } }