CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    May 2011
    Posts
    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

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    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

  3. #3
    Join Date
    Apr 2011
    Posts
    5

    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.

  4. #4
    Join Date
    Jan 2009
    Posts
    1,689

    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.

  5. #5
    Join Date
    May 2011
    Posts
    1

    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..?

  6. #6
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: what is the code for Ctrl + Alt + Del keys in dev C++

    Quote Originally Posted by q1w2e3r4t5 View Post
    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
  •  





Click Here to Expand Forum to Full Width

Featured