Link to home
Start Free TrialLog in
Avatar of McSpud
McSpud

asked on

Delay in TPW

How do I get a TPW program to delay for about a second?
ASKER CERTIFIED SOLUTION
Avatar of zircon
zircon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of zircon
zircon

BTW, you'll need to make sure one more line of code is in your program.  If you don't have this statement in your code already, for TWP to recognize the call to Delay, you need to put the following line of code under you program header and before your global variable declarations:

uses crt;

Otherwise, your compiler will give you an unknown identifier error.

I tested this on one of my programs, and it does work.

Good luck.
Avatar of McSpud

ASKER

Adjusted points to 15