Can anyone give me an easy way to find out the numbers after the decimal point of the double? All i need to do is to find out if the number ends in 0 like 1.0 or 10.0 or 32
Just use the Mod operator, like so:
Mod
If (x Mod 1) = 0 Then ' Do some stuff End If
(see http://en.wikibooks.org/wiki/Visual_Basic_.NET/Arithmetic_operators)