Emulating clipboard copy/paste
-
How can I emulate Ctrl+Ins or Shift+Ins (Ctrl+C Ctrl+V) key combinations. I've seen it in one program where it was possible to define your own keys to work with clipboard. How is it implemented?
You just need to handle the KEY_UP or KEY_DOWN events in your application and then access the clipboard with whichever key combination you want.
store your internet favourites online - www.my-faves.co.uk
-
You just need to handle the KEY_UP or KEY_DOWN events in your application and then access the clipboard with whichever key combination you want.
store your internet favourites online - www.my-faves.co.uk
You must have misunderstood me. The thing I want to do is for example I press Ctrl+Shift+P and text from the clipboard appears on the screen (in Edit Box, Notepad, Word, whatever has the focus). And vice versa I pick out some text with the mouse or keyboard press Ctrl+Shift+C and the text saves to clipboard. That's what I want.