I'm currently working on "for" with this it should be easyer to handle these problems (after this i want to add the support for arrays, but this will take a longer time as "for" and I'm not finished with it... + the array will be static, I hope this wont be a problem)
how for and the array can look like (dunno if i make it so, but it should be similar):
Quote:
var
IntArray : Array(10,Integer) //Create a Array of Integer with 10 Values
Count : Integer = 0
CountTo : Integer = 10
TmpStr, SendStr : String
begin
for (Count,Countto)
IntArray[Count] := Count+CountTo //Only as example 
Convert(Count,TmpStr)
SendStr :=Currently at Position
SendStr := SendStr+TmpStr
jjecho(SendStr)
end
end.
|
Edit1 (15.01.11):
Got "for" working and fixed the bug in Convert, have to say sorry, there was really one, convert only worked for some times (so the bug will be fixed in the next official version of JJM) Convert will be looking like i written in the ReadMe Convert(OutVar,InVar)
Working now on the arrays and several bug fixes, i got a lot stuff in the other Thread
Last edited by Sfaizst; Jan 15, 2011 at 06:49 AM.
|