HP Forums

Full Version: menu access
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a simple endless loop as follows:

EXPORT loopy()
BEGIN
LOCAL KEY;
REPEAT
RECT_P(); //clear
KEY := WAIT(-1);
//... process_keys
//... use CHOOSE(...) opens over start
// screen
//...
UNTIL 0;
END;

The question
From this pgm is it possible to access system
menus since it owns the keyboard.?

Also, my CHOOSE menus opens over the starting screen and
not my cleared screen. Any way to control this?
Reference URL's