Page 1 of 1

copy/paste

Posted: 06 Aug 2019, 00:33
by safalpiya
We are not able to do copy and paste function in axes in input field . Is there any way we can use the copy and paste function?
I tried to use Ctrl + C, but when I press Ctrl button, it acts as a Tab button.

Re: copy/paste

Posted: 07 Aug 2019, 15:13
by Fairdinkum
Hi Safalpiya,

In our case, we usually advise our customers to change the keymap files (such as as400keymap.xml, defaultkeymap.xml and windowskyemap.xml) they use something like the following:

BEFORE:

Code: Select all

<MAP>                           
  <KEY>Ctrl</KEY>
  <DESC>FIELD EXIT</DESC>       
  <COMMAND>FieldExit</COMMAND>  
</MAP>  
AFTER:

Code: Select all

<MAP>                           
  <KEY>Shift + Ctrl</KEY>       
  <DESC>FIELD EXIT</DESC>       
  <COMMAND>FieldExit</COMMAND>  
</MAP>
or disable FieldExit key mapping.

Code: Select all

<MAP>                           
  <KEY>Ctrl</KEY>       
  <DESC>FIELD EXIT</DESC>       
  <COMMAND>Noop</COMMAND>
</MAP>
HTH.

Best Regards,
Hidekazu Tanaka