Consultor Eletrônico



Kbase P20026: 4GL/ABL: The "press space bar to continue" message is displayed when switching from CHUI to GUI comp
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   30/06/2009
Status: Verified

SYMPTOM(s):

4GL/ABL: The "press space bar to continue" message is displayed when switching from CHUI to GUI component of the same application.

Application pauses on return from SESSION:V6DISPLAY mode

Code includes:

DISPLAY fiJumpName BannerText fiName fiUserID fiDate WITH FRAME default-frame."

FACT(s) (Environment):

Windows 9.x GUI application (a menu) capable of running legacy character V6 applications.
Windows
Progress 9.x
OpenEdge 10.x
OpenEdge Category: Language (4GL/ABL)

CAUSE:

Progress automatically pauses before removing a frame and displays the "Press spacebar to continue" message if the user did not have a chance to see the
data in the frame.

Also, an automatic PAUSE is implemented after each set of records is displayed and the ?press SPACEBAR to continue? message is also displayed.

To display all the records without pausing at all, use ?PAUSE 0 BEFORE-HIDE? and to pause a second for each record set displayed, use ?PAUSE 1 BEFORE-HIDE? and
so on.

FIX:

Insert:

PAUSE 0 BEFORE-HIDE

before the display statement to supress the "press space bar to continue" message and resolve this issue.