Post Reply 
A simple Entry Mode Switcher...
07-27-2019, 10:26 PM
Post: #13
RE: A simple Entry Mode Switcher...
Here is a popup version.
It will fill in based on the user's preferred language.

Code:

//Popup selection of Entry method
// To run: Shift:Help:On
// String in language of user

Key K_On
BEGIN
  LOCAL epick, title, entry1, entry2, entry3;
  title     := STRINGFROMID(1902); //"Choose entry method"
  entry1 := STRINGFROMID(1903); //"Textbook"
  entry2 := STRINGFROMID(1904); //"Algebraic"
  entry3 := STRINGFROMID(1905); //"RPN"
  CHOOSE(epick,title, entry1, entry2, entry3);
  Entry := epick - 1;
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: A simple Entry Mode Switcher... - dae - 07-27-2019 10:26 PM



User(s) browsing this thread: 1 Guest(s)