It is just possible that I'm missing the point with REDIM.
Using a REDIM statement to map a pointer array to results provided by a dll, the first use is
, then
. This doesn't work, the ubound of psz stays at 1.
Making a "dummy" program which just toggles between the two redims works perfectly, of course.
Has anyone else had similar experiences with REDIM...AT?
Using a REDIM statement to map a pointer array to results provided by a dll, the first use is
redim psz( 0 to 1) at dwresults
redim psz( 0 to 999) at dwother
Making a "dummy" program which just toggles between the two redims works perfectly, of course.
Has anyone else had similar experiences with REDIM...AT?
Comment