Tip of the day: Double comparison
dim d as Double = 10
dim e as Double = 1.19
dim f as Double = d * e
// checking exact fails
if 11.90 = f then
Break
else
Break
end if
// better check with tolerance
if abs(11.90-f) < 0.01 then
Break
else
Break
end if
