I want to store latitude and longitude data as Float data type values. When I moved mouse over flt1 variable, it showed 123.45679 while the Log() yielded another slightly different value.
Could someone tell me what's wrong, please?
TIA
Could someone tell me what's wrong, please?
Problem with float data type:
Dim flt1 As Float=123.4567890123456
'hoveover value: 123.45679 (rounded with 5 decimal digits)
Log(flt1) 'output: 123.456787109375
TIA