keepingbusy
Programmer
This is probably staring me in the face, but I need your advice guys:
I have the following command in the right click event of a text box to allow the user to "Paste" in text:
Code:
Keyboard '{CTRL+V}'
Code:
Keyboard '{CTRL+C}'
What I am trying to achieve is for the user to click into a field (text box) on a form, be able to copy all the text contained in that text box using an automated process (such as Keyboard '{CTRL+C}')
It's quite easy to use the keyboard (CTRL&C) but that's not what we are after.
I can't use left click because that would mean every time someone clicked into the text box, it would be asking to "Copy", I cant use right click (already being used by Keyboard '{CTRL+V}' and finally, if you highlight all the text in the field (text box) and then click on it (Or double click on a word) it only highlights one word and not all of them.
I have though about using a Function key to achieve CTRL&C but if the mouse can be used, that would be more appropriate for this project.
Some guidance would be very much appreciated.
Thank you
Lee