Results 1 to 2 of 2

Thread: stopping ctrl-alt-del with c++

  1. #1

    Thread Starter
    Lively Member satti charvak's Avatar
    Join Date
    Apr 2001
    Location
    noida, india
    Posts
    90

    Red face stopping ctrl-alt-del with c++

    Is there any way we can stop ctrl-alt-del in windows 2000 or winnt-4.0 only. The codes for win9x/me are not wanted. Please.

    thanks in advance 2 everybody who can help or even not.

  2. #2
    Member
    Join Date
    Feb 2001
    Posts
    57

    So, this will not work?????

    Code:
    DWORD dwNotUsedForAnything;
    
       // Clap On
       SystemParametersInfo(SPI_SCREENSAVERRUNNING, TRUE, &dwNotUsedForAnything, 0);
    
       // Clap Off
       SystemParametersInfo(SPI_SCREENSAVERRUNNING, FALSE, &dwNotUsedForAnything, 0);

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