|
-
May 24th, 2011, 08:16 PM
#1
what is the code for Ctrl + Alt + Del keys in dev C++
who can tell me the codes for the keys Ctrl + Alt + Del and wat variable do i have to use to store the data when the keys are pressed
-
May 25th, 2011, 01:21 AM
#2
Re: what is the code for Ctrl + Alt + Del keys in dev C++
I doubt you could handle it in your app.
Have a look at http://en.wikipedia.org/wiki/Control-Alt-Delete particularly the section Windows NT (and later versions)
Victor Nijegorodov
-
May 25th, 2011, 01:46 AM
#3
Re: what is the code for Ctrl + Alt + Del keys in dev C++
In apps you can done it. For more infromation you must visit the cplusplus.com . I hope you find your answer.
-
May 25th, 2011, 09:55 AM
#4
Re: what is the code for Ctrl + Alt + Del keys in dev C++
I don't think you can use that. I'm fairly certain you can't override windows functionality. That brings up the activity monitor. I'm sure you can't override Alt + F4 either. What you can do is listen for the WM_CLOSE event, which if your program gets shut down by the activity monitor, should be thrown.
-
May 31st, 2011, 08:06 PM
#5
Re: what is the code for Ctrl + Alt + Del keys in dev C++
i think he meant... key ID.. does anyone know the ID for the keys..?
-
June 1st, 2011, 01:02 AM
#6
Re: what is the code for Ctrl + Alt + Del keys in dev C++
 Originally Posted by q1w2e3r4t5
i think he meant... key ID.. does anyone know the ID for the keys..?
MSDN does know. 100% sure...
Victor Nijegorodov
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|