Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Here an easy one... the wait command
Message
From
22/08/2000 14:41:00
 
 
To
22/08/2000 14:25:31
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00407890
Message ID:
00407904
Views:
21
This is the normal behaviour of the wait window. You might try the Sleep() API instead:

DECLARE Sleep IN Win32API INTEGER nMilliseconds
WAIT WINDOW NOWAIT "Monitoring FTP Server..."
Sleep(30000)
WAIT CLEAR

HTH
>I have the following code in one of my programs:
> wait window 'Monitoring FTP Server...' noclear timeout 30
>I am attempting to simulate a timer but if the user presses a key or clicks the mouse the wait window is cleared and program execution continues, I do not want that to happen. I want the program to wait for 30 seconds no matter what happens... what am I doing wrong??
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform