Posts: 56
Threads: 10
Joined: Aug 2012
Reputation:
0
I would like to know how to implement keyboard shortcuts into Visual Studio applications. For example, ctrl+s would save a file, ctrl+o would open a file, etc.
Posts: 1,006
Threads: 111
Joined: Jul 2010
Reputation:
1
Well, you're going to want to use the Form.KeyPressed event. More information on doing this can be found in this tutorial:
<!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=g-I3PUOQUIc&feature=plcp">http://www.youtube.com/watch?v=g-I3PUOQUIc&feature=plcp</a><!-- m -->
Posts: 56
Threads: 10
Joined: Aug 2012
Reputation:
0
Thanks! I tried searching through your tutorials before I posted this, but I guess that I did not catch this one. Thanks again!