I need to detect , whenever user presses control+v.
using global key it is posible to detect either control or v. But I need whenever user press control+v to know when user tries and copy and paste something. It should work even outside app. Please help!
Nitin SontakkePosted Jul 20, 2016, 12:37 AM
@Aditya, the important requirement here is "it should work even outside app", which is not possible.
@Gokul, essentially what you are looking for is a sort of memory resident, running in background application without an UI which will keep monitoring the interrupts. All keypressesraise interrupts with Windows messaging loop, which you will need to intercept.
Aditya KumarPosted Jul 9, 2016, 2:11 PM