How can I improve code using AEval instead of For Next loop
- Code: Select all Expand view
- #include "fivewin.ch"
function Main()
local aData := {}
local i, j, aTemps2 := {}
FOR i := 1 TO 50
FOR j := 1 TO 26
aAdd(aTemps2, hb_valtostr("Demo "+alltrim(str(i))+" "+alltrim(str(j))))
NEXT j
aAdd( aData, aTemps2)
aTemps2 := {}
NEXT i
xbrowser adata
return nil