Sendkeys for Ctrl+Alt+Del?

  • Thread starter Thread starter Dean Slindee
  • Start date Start date
D

Dean Slindee

Have tried, but does nothing:
SendKeys.Send("^%({DELETE})")

Thanks,
Dean Slindee
 
SendKeys will be consumed by the active application. Unless you have done
something to cause your app to not be the active app, your own app is
probably consuming the keys. The ExitWindowsEx API can be used to shutdown,
reboot, or logoff, but users could get irate about this happening
automatically.

Les Smith
http://www.knowdotnet.com
 
Back
Top