Posts by Mario Meireles • 3 points
2 posts
-
0
votes2
answers39
viewsQ: It is returning me a rounded number and I do not want ex number 1.99 and not 1.00 or 2.00
Private Sub txtPricePerQty_TextChanged(sender As System.Object, e As System.EventArgs) Handles txtPricePerQty.TextChanged Dim i As Double = 0 i = CDbl(Val(txtQty.Text) * Val(txtPricePerQty.Text)) i…
vb.netasked Mario Meireles 3 -
0
votes1
answer147
viewsQ: Print in landscape format in Crystal report
I can’t print out a Crystal report in landscape format. I’ve changed in Designer>Printer Setup>Orientation>Landscape but it didn’t work. I went into the Default Properties didn’t work…