>In Foxpro 2.0 (DOS), is the default initialization always a character? I can't
>seemed to store any values in an uninitialized array. That's why before I
>use the array, I need to initialize it beforehand using a "for" loop and
>plugging zeros in each subscript. Any feedback on this?
whole array to zero with
arrayname = 0
but you shouldn't have to do this; you can store values in an
"uninitialized" array. Could you explain the problem a bit more?
Dave.
---