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.
copy/paste
Moderator: jeanmichel
-
- Posts: 44
- Joined: 24 Jul 2017, 17:02
Re: copy/paste
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:
AFTER:
or disable FieldExit key mapping.
HTH.
Best Regards,
Hidekazu Tanaka
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>
Code: Select all
<MAP>
<KEY>Shift + Ctrl</KEY>
<DESC>FIELD EXIT</DESC>
<COMMAND>FieldExit</COMMAND>
</MAP>
Code: Select all
<MAP>
<KEY>Ctrl</KEY>
<DESC>FIELD EXIT</DESC>
<COMMAND>Noop</COMMAND>
</MAP>
Best Regards,
Hidekazu Tanaka