hi all,
i try to make array here but i didn't know how to make it?
please help me..
best regards..
hi all,
i try to make array here but i didn't know how to make it?
please help me..
best regards..
see this example :
i write this code in pascal
Array.zip
hope this helps..
see this example :
i write this code in pascal
[ATTACH]5318[/ATTACH]
hope this helps..
sorry for the double post.
thanks for your help jx_man
hope to see your post again in my other thread.
hi
lets say the array name is jx_man:
var
jx_man: array[1..45] of string;
counter: integer;
begin
for counter:= 1 to 45 do
begin
//initialize jx_man
jx_man[counter]:= '';
for counter:= 1 to 45 do
begin
//lets allow users to enter data
jx_man[counter]:= inputbox('enter data','my home','');
//our array will contain 45 strings
//display our array on memo1
memo1.lines.add(jx_man[counter]);
end;
end;
end;
////we have some types of arrays: 2 dimensional, 3, and even a dimensional//////
i suggest that you should go to www.nowitwiz.co.za and download the lessons.
thanks