How to remove digits after decimal in vb.net?
if value is 1.9 i want 1 if value is 1.1 i want 1
If you convert a Double to ULong in vb.net then it will remove all the digits are decimal, in this way you can get the desired result.
Dim vIn As Double = 1.9 Dim vOut As ULong = Convert.ToUInt64(vIn)
How to remove decimal from currency datatype?
How to change postion if a contrl at runtime in vb.net?
how to change size of the panel dynamically vb.net