Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Minions

    disable keyboard

    Hello, this is my first answer here, I hope it helps :-) This code disable ALT+TAB and CTRL+ALT+DEL: program disable; uses WinProcs; var Dummy : integer; begin Dummy := 0; {Disable ALT-TAB} SystemParametersInfo( SPI_SETFASTTASKSWITCH, 1, @Dummy, 0); {Disable CTRL-ALT-DEL}...
  2. Minions

    Please,I need to detect WM_ENDSESSION without using Forms

    I want to detect WM_ENDSESSION and do an action before Windows Shutdown (to prevent errors), but I don't want to use Forms. Do you have an idea or an example code???

Part and Inventory Search

Back
Top