B
Bob Graham
I'm declaring an array like this
dim subs(,,) as object
Then in the form load procedure I redim:
redim subs(29,0,0)
(I want an array of 30 items with two extra 'properties' that I can access
at very high speed while my app is running)
How do I fill an individual row of this array?
I've tried variations on
subs(i, 0, 0) = {a, b, c}
But I can't figure it out.
Help???
Bob
dim subs(,,) as object
Then in the form load procedure I redim:
redim subs(29,0,0)
(I want an array of 30 items with two extra 'properties' that I can access
at very high speed while my app is running)
How do I fill an individual row of this array?
I've tried variations on
subs(i, 0, 0) = {a, b, c}
But I can't figure it out.
Help???
Bob