PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WM20 android) No function to add  multi dimension array
[WM20 android) No function to add multi dimension array
Iniciado por guest, 21,ago. 2015 08:46 - 2 respuestas
Publicado el 21,agosto 2015 - 08:46
unbelievable , i just found out that [WM20 android ] has no function to add multi dimension array.

PC-soft really asking for law suit .
Publicado el 21,agosto 2015 - 23:53
in WM19 Multidimensional array are working, and array of structures, and classes.
//example 1 Myarray is array of 5 by 6 int Myarray[1][2] = 12 Myarray[2][1] = 21 Info(Myarray[1][2],Myarray[2][1]) /example2 //structure defined in the "initializcin window" process //Car is Structure // color is string // price is currency //END arrCars is array of Car ArrayAdd(arrCars) arrCars[1].color = "red" arrCars[1].price = 1000 Info (arrCars[1].color,arrCars[1].price)
What do you mean is not working?
Maybe the function "ArrayAddLine()"?
Publicado el 22,agosto 2015 - 00:35
yes, arrayaddline() and arrayinsertline()