Re: [fpc-pascal]Better Alternative to delay()

2003-10-14 Thread Darek Mazur
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);

[fpc-pascal]Better Alternative to delay()

2003-10-14 Thread George Patterson
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

Re: [fpc-pascal]Error Trapping w/ ReadKey

2003-10-14 Thread Marco van de Voort
[ 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

[fpc-pascal]Error Trapping w/ ReadKey

2003-10-14 Thread Darren Reynolds
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

[fpc-pascal]GTK: Layout Container Example

2003-10-14 Thread Peter Huesser
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