I get an overflow for the following VBScript code, and do not know what data type to cast to, so I do not get the "overflow" except. Any idea on this is greatly appreciated.
dim iFileSize
dim Remainder
iFileSize = 2206678860
Remainder= CDbl(iFileSize) Mod (228)
What should I cast my iFileSize to, to avoid an overflow?
If possible, please contact me directly at byang@cmsdirect.com
Thank you.
dim iFileSize
dim Remainder
iFileSize = 2206678860
Remainder= CDbl(iFileSize) Mod (228)
What should I cast my iFileSize to, to avoid an overflow?
If possible, please contact me directly at byang@cmsdirect.com
Thank you.