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
Zuber Kazi
NA
36
34.2k
Keys in C#
Mar 7 2012 7:05 AM
Hello everyone,
I am developing a windows application in C#.
On form_keydown event
if (e.KeyCode == Keys.Escape)
{
this.Close();
}
this is working properly
but i want to save data on ctrl+s
i tried for
if (e.KeyCode == Keys.control + Keys.S)
but it throws an error
please help me out.
Regards,
Zuber I. Kazi.
Reply
Answers (
4
)
picture
To write dynamic connection string(c#2008,SQL SERVER 2005)