Topic: Redim array

Hi,


does anybody know if MyVisualDatabase support the Redim of an Array at runtime?


I need a dynamic array or I need to declare the maximum which is around 256k in this specific case.


Thank you.

Re: Redim array

use SetLength( <DinamicArray>, <NewSize> ), this procedure keep data in array if it possible

var
  DA: array of string;
begin
...
  SetLength( DA, 10);
...
  SetLength( DA, 50);
Визуальное программирование: блог и телеграм-канал.

Re: Redim array

Thank you.