Consultor Eletrônico



Kbase P62190: OE 10.0A - PAUSE statement does not work properly in the Windows TTY environment
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   13/09/2010
Status: Unverified

SYMPTOM(s):

PAUSE NO-MESSAGE does not wait in TTY client

PAUSE statement does not work properly in character client

FACT(s) (Environment):

OpenEdge 10.0A
Windows NT 32 Intel/Windows 2000

CAUSE:

Bug# OE00099755

FIX:

Upgrade to OpenEdge 10.0A01 or later

In order to work around the problem, please use following piece of code based on the Win32 API:

RUN Sleep (ip_iSeconds * 1000). /* Milliseconds */

PROCEDURE Sleep EXTERNAL "kernel32.dll":
DEFINE INPUT PARAMETER intMilliseconds AS LONG.
END PROCEDURE.