Array Bounds must be Integers

From Xojo Documentation

Error message

You used a non-integer in a Var statement when trying to declare an array. You can use Integer constants to dimension an array, but not non-integers.


Examples

Var aPicture (5.2) as String
Var aProps (True) as Boolean


See Also

Var statement.