|
I'm using Libc.System command, it's working , but it doesnt understand parameters that follow the command sim.exe.
Each parameter is entered in Edit boxes.
Bellow is the code:
procedure Ttdform.simClick(Sender: TObject);
.
.
.
Libc.System ('sim.exe parameter1 parameter2 parameter3 p4 p5 p6');
...
end.
It works if I use Libc.System ('sim.exe 3 1000 10 30 40 50);
but I want to use the value entered in the Edit box, how can I do it?
Thanks, |
|