Guest_imported
New member
- Jan 1, 1970
- 0
How do I covert a string (memo text) to an erray?
var
calc:array[1..6000] of byte;
begin
calc:=memo1.text;
end;
var
calc:array[1..6000] of byte;
begin
calc:=memo1.text;
end;
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var calc: string;
begin
calc := Memo1.Lines.CommaText;
end;
calc[i]