Line of a code for a program in C#

Asked

Viewed 17 times

1

private void btnEditarProduct_Click(Object Sender, Eventargs and) { if (btnEditarProduct.Text == "EDIT") { txtName.Text = dtgProduct.Rows[dtgProdut.CurrentCell.Rowindex]. Cells["Name"].Value.Tostring();

                            txtCodigo.Text = dtgProduto.Rows[dtgProduto.CurrentCell.RowIndex].Cells["ExternalCode"].Value.ToString();


                            txtDescrição.Text = dtgProduto.Rows[dtgProduto.CurrentCell.RowIndex].Cells["Description"].Value.ToString();

                            txtMarca.Text = dtgProduto.Rows[dtgProduto.CurrentCell.RowIndex].Cells["Brand"].Value.ToString();

                            txtPreco.Text = dtgProduto.Rows[dtgProduto.CurrentCell.RowIndex].Cells["Price"].Value.ToString();


            (""ESSA É A LINHA COM PROBLEMA"")cmbTipoProduto.SelectedIndex = dtgProduto.Rows[dtgProduto.CurrentCell.RowIndex].Cells["Model"].Value.ToString();(NESSA LINHA ESTA DANDO O PROBLEMA DE CONVERSÃO DE STRING EM INT)

            btnCadastrarProduto.Enabled = false;
            btnExcluirProduto.Enabled = false;
            dtgProduto.Enabled = false;
            btnEditarProduto.Text = "SALVAR EDIÇÃO";
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.