Hello
Does anybody has an example of how to use the layout container ? An
example in "c" would be fine too.
Thank's for any help
Pedro
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Just getting into the "planning" phase of a personal project I'm working on,
and one of the things I'm trying to do is predict where there's going to
need to be some error trapping things in place. As a part of this I've been
browsing various message boards taking a look at what various people hav
[ Charset ISO-8859-1 unsupported, converting... ]
> Just getting into the "planning" phase of a personal project I'm working on,
> and one of the things I'm trying to do is predict where there's going to
> need to be some error trapping things in place. As a part of this I've been
> browsing vario
Hi all,
I am using the delay function to pause for an amount of time which works
but will not allow the user to stop the program from the console, using
ctrl-C. If I could trap the keystroke, I would be happy.
Excuse the indentation...
while not eof(sin) do
begin
repeat
re
The better way is write your own function to input data from keybord
Then You may wait so long as you want, trap special keys etc
for exaple
function inputkstring(wait : longint):string;
var
s : string;
ch : char;
theend : boolean;
begin
s:='';
theend:=false;
repeat
delay(100);