Post Reply 
In a program how do you program the ENTER key
02-21-2019, 05:04 AM
Post: #5
RE: In a program how do you program the ENTER key
I understand that you are calling the FIX3 function from the toolbox and what you want is that when you select it is not inserted as editable text but that it is executed directly.
If so, this will definitely not be possible, since the function of the toolbox is to bring the identifiers on screen in edit mode.

An alternative is to keep the user keyboard active and assign an action for example to the LOG key

Code:
KEY K_Log()
BEGIN
  HFormat:=NOT HFormat;
  HDigits:=3; 
  -1
END;

[Image: giphy.gif]

Viga C | TD | FB
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: In a program how do you program the ENTER key - Carlos295pz - 02-21-2019 05:04 AM



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