Consultor Eletrônico



Kbase P120000: How to get the CHUI DOWN FRAME "press space bar to continue." behavior in GUI
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   31/10/2006
Status: Unverified

GOAL:

How to get the CHUI DOWN FRAME "press space bar to continue." behavior in GUI

GOAL:

Example of a GUI DOWN FRAME with the "press space bar to continue" behavior.

FACT(s) (Environment):

Progress 9.x
OpenEdge 10.x

FIX:

When displaying data in a CHARACTER or CHUI DOWN FRAME, the frame pauses when it is full and the status-area has the "press space bar to continue" text. The following is an example in GUI on how to get the same behavior.
1. Open the AppBuilder and connect to a copy of the sports2000 database.
2. Create a new window
3. Open the Windows property sheet. To do this, click on the "list objects" icon on the AppBuilders menu bar and then double-click the WINDOW object. Once the property sheet is open check the "Status-Area" property and click ok.
4. From the same "List objects" dialog, double-click the DEFAULT-FRAME to bring up the property sheet for the FRAME. Check "Down" and "No labels" and click ok.
5. Open the Section Editor and go to the "Main Block" section.
6. Comment out the "PAUSE 0 BEFORE-HIDE." call
7. Add the following code before the "Run enable_UI":
FOR EACH customer WITH FRAME default-frame:
DISPLAY custnum NAME.
END.
8. Run the window to see the behavior.