This declaration causes an overflow in VBA:
Const OVERFLOWS As Long = 10 * 60 * 60
whereas setting the value directly is fine:
Const COMPILES_OK As Long = 36000
How do you persuade VBA to treat literal integers as longs?
Thanks
|
|
|
|
|
|
|
Add the
Note that using the |
||||||
|
|
|
http://support.microsoft.com/kb/191713 is a nice summary of the type declaration characters available in VBA / VB4-6. |
||
|
|
|
|
The type character can also be appended to literals : Const OVERFLOWS As Long = (10& * 60 * 60) (one is suffucient actually because of the way the VBA engine evaluates the expression). |
||
|
|
|
|
For those who find the & symbol a bit esoteric, an alternative is to use the CLNG function which converts a number to long
you could then do a similar thing for a Single constant
|
||
|
|