I am using vb6.
I had placed an MSFlexGrid control in my form , the colum(3) contain quanity of the products.
Currently , the quantity is shouwing like
I want to show it like
I know how to make it round for text boxes to two decimal places by using
But how can I use the same code in MSFlexGrid.
Any help?
I had placed an MSFlexGrid control in my form , the colum(3) contain quanity of the products.
Currently , the quantity is shouwing like
Code:
10 1500 200
Code:
10.00 1500.00 200.00
Code:
Format(Round(quantity.Text, 2), "##0.00")
Any help?
Comment