Good morning, I'm breaking my head to add a line from a grid from my form1 to the grid of my form2.
Below is my code to simplify my question.
ItemVendaView item = new ItemVendaView()
{
ProdutoID = produto.ProdutoId,
CodigoBarra = produto.CodigoBarra,
ValorVenda = produto.ValorVenda1,
ValorCusto = produto.ValorCusto,
Quantidade = 1,
ProdutoDescricao = produto.DescricaoReduzida
};
ITENS.Add(item);
This code above is the main form where I want to send the product form data to the main form.
Below is the code of the product form where I find the product and give an enter and send to the main form.
private void frmProdutos_Load(object sender, EventArgs e)
{
SetaTituloForm("Buscar Produto");
gridProdutos.DefaultCellStyle.Font = new Font("Tahoma", 11);
gridProdutos.AutoGenerateColumns = false;
gridProdutos.DataSource = produtobll.SelecionarTodos();
gridProdutos.Refresh();
}
Thank you