I didn’t see his documented anywhere so I’ll post it here. In SB4 the LOADV command is supposed to work in two ways- return the contents of a file to a variable or load directly into an array. However, anytime I try to load content into an array I get a “type mismatch” error.
So, example.
'Does not work: DIM L0[0] LOADV “DAT:MAP_LAYER_0”,L0 'Does work: DIM L0[0] L0=LOADV(“DAT:MAP_LAYER_0”)From my understanding, both should work. Is this a case of bad documentation on the function, the function doesn’t work, or am I wrong in its usage?