Posts by Junior Ramoty • 21 points
2 posts
-
0
votes0
answers80
viewsQ: How to calculate +10.5% in a product
How to calculate +10.5% in a product? My calculus is like this: private void txtMargemLucro_Leave(object sender, EventArgs e) { txtPrecoVenda.Text = (Convert.ToDecimal(txtPrecoCusto.Text) *…
-
1
votes1
answer613
viewsQ: How to select using LINQ with 2 tables?
This is my select: bd = new AcessoBancoDados(); bd.Conectar(); string cidade = "SELECT c.Nome FROM Cidade c join Estado e on c.EstadoId = e.EstadoId WHERE e.Sigla = '" + dto.Estado + "'"; dt =…