TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Administrator
Tech Writer
2.2k
1.5m
How can i use the ASCII code for a keyboard key F5 in a "KeyPressEventHandler"
Apr 10 2003 12:33 PM
The code below show the content of a variavel in a COMBOBOX when the user pressures keyboard key ESC. I would like to use the ASCII code for a keyboard key F5. The ASCII code is 116 but when i substitute then it does not function. How can i make execute the code with the F5 keyboard key? private void Ultdeterminador (object sender, System.Windows.Forms.KeyPressEventArgs e) { //27 Corresponde a tecla ESC if (e.KeyChar == 27) { this.cboDeterminador.Text = determinador; }//Fim do IF }
Reply
Answers (
1
)
VB.Net VS C#
How do I use the platform SDK with C#?