windows - How to implement CTRL-A key combination in C++ -
When CTRL-A is pressed, then I want to apply some action. How can I do this in C ++ on the Windows platform? I am using VS2005.
Any indication will be found.
Define a keyboard accelerator table in your resources, and then make sure you loop your message . See full details.
If you are using any framework (like MFC) then its acceleration accelerator will have its own methods - you will have to look at the structure of the structure you are using.
Comments
Post a Comment