` Printed Icetips Article

Icetips Article



Par2: Keypad Enter as Tab
1997-06-02 -- Geir Hansen
 
How to use the Enter key on the numeric keypad as a Tab key, is actually documented 
in the CW help file. The following is pasted from the help file:

ACCEPT                        !Loop on the display
  CASE KEYCODE()              !Process the keystroke
  OF EnterKey                 !User pressed Enter
    IF BAND(KEYSTATE(),0800h) !Detect enter on numeric keypad
      PRESSKEY(TabKey)        !press tab for the user
    END
  END
END



Printed May 5, 2024, 11:45 am
This article has been viewed/printed 35114 times.