Exemple #1
0
 private void txtMargemLucro_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
Exemple #2
0
 private void txtVenda_Leave(object sender, EventArgs e)
 {
     FormataMoeda.formatarMoeda(txtVenda);
 }
Exemple #3
0
 private void txtCusto_Leave(object sender, EventArgs e)
 {
     FormataMoeda.formatarMoeda(txtCusto);
 }
Exemple #4
0
 private void txtQuantidade_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
Exemple #5
0
 private void txtDesconto_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
Exemple #6
0
 private void txtPrecoUnitario_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }