VBGamer |
|
Yes I do Jack Hoxley (0 replies, 0 views) (2000-Dec-31) I resize my arrays on the fly - as I need them; although during initialisation I do it in big jumps
Dim mdlVertList() as D3DVERTEX
'Load data and find that nVertices = 10,000
ReDim mdlVertList(nVertices) as D3DVERTEX
just remember to keep the Preserve keyword there when you already have data in the array and are changing the size.
Jack; |