Uint64 trouble
18 04 11 - 14:28dim x as UInt64 = 18446744073709541376
dim d as Double = x
dim u as uint64 = d
MsgBox str(x)+" "+str(d)+" "+str(u)
and try this:
dim d as Double = 18446744073709541376
MsgBox str(d)
As you see things don't work as expected, so I filled two bug reports: #16715 and #16714
No comments