1) I've got four arrays declared as GLOBAL.
2) I've got an initialization function which accepts an array BYREF
and REDIMs the array.
3) I've got a CALLBACK function which calls the initialization function
once for each GLOBAL array.
4) I've got four separate CALLBACK functions which modify their respective
GLOBAL array (without REDIMming - that's handled in the initialization
function).
I'm getting an error 461 at compile time in item #4. What do I need to do
to fix this?
------------------
Bernard Ertl
2) I've got an initialization function which accepts an array BYREF
and REDIMs the array.
3) I've got a CALLBACK function which calls the initialization function
once for each GLOBAL array.
4) I've got four separate CALLBACK functions which modify their respective
GLOBAL array (without REDIMming - that's handled in the initialization
function).
I'm getting an error 461 at compile time in item #4. What do I need to do
to fix this?
------------------
Bernard Ertl
Comment