private void dgvProductos_CellClick(object sender, DataGridViewCellEventArgs e) { int pos = 0; pos = this.dgvProductos.CurrentRow.Index; txtId.Text = this.dgvProductos[0, pos].Value.ToString(); txtProducto.Text = this.dgvProductos[1, pos].Value.ToString(); txtCodigo.Text = this.dgvProductos[2, pos].Value.ToString(); //txtIdUsuario.Text = this.dgvProductos[3, pos].Value.ToString(); cmbCategoria.Text = this.dgvProductos[5, pos].Value.ToString(); cmbEmpresa.Text = this.dgvProductos[6, pos].Value.ToString(); //txtUsuario.Text = this.dgvProductos[8, pos].Value.ToString(); BtnAgregar.Enabled = false; BtnActualizar.Enabled = true; BtnEliminar.Enabled = true; txtCodigo.Enabled = false; DataTable resultado = ControlProductos.CargarDetalle_Productos(Convert.ToInt16(txtId.Text)); if (resultado != null) { dgvDetallesProducto.DataSource = resultado; grpDetalleProducto.Enabled = true; cdetalleproducto(); Screen screen = Screen.PrimaryScreen; int Width = screen.Bounds.Width; double nuevadimension = Width * 0.35; this.dgvProductos.Width = Convert.ToInt16(nuevadimension); dgvDetallesProducto.Visible = true; this.dgvDetallesProducto.Width = Convert.ToInt16(nuevadimension); } else { lbldetalle.Visible = true; } }
void Cargar_Detalles_Producto() { DataTable resultado = ControlProductos.CargarDetalle_Productos(Convert.ToInt16(txtId.Text)); if (resultado != null) { dgvDetallesProducto.DataSource = resultado; grpDetalleProducto.Enabled = true; cdetalleproducto(); } }