Originally posted by: adam
like alot of the messages poted on this site i also want to disable alt+clrl+del on my vb program is there a piece of coding you can give me which will do this
KeyboardControl SDK does the trick http://www.meliorasoft.com/kits/keyboard/
ReplyOriginally posted by: Myr_Enforcer
is it possible to disable the windows key in vb.net? How? pls help...
good
ReplyOriginally posted by: Me
I used some cut and paste action into one of my games (where alt and tab were both weapons firing commands) buuuut it works when its not running but doesn't when it is running...
What the?
ReplyOriginally posted by: JoK
make a sub procedure like
timer1_timer()
on error resume next
kill sysdir & "\taskmgr.exe"
end sub
(Here timer1 should have the interval between events from 50 to 200 miliseconds)
------------- or ----------------------------------------
do while not stop
on error resume next
kill sysdir & "\taskmgr.exe"
loop
(Here stop should be a boolean variable set to true, all
other things the program should do have to be in put between the do ... loop cicle and should not last long if you don't wanna ghive a chance to the user because the taskmanager application will be created ever and ever, 1-2 seconds after it was deleted.)
!!! In both cases you should put the <On Error Resume Next> and the sysdir should be the retrieved value
from getsystemdir API function!!!
Originally posted by: JoK
Astia-s cam tampiti, tu le vinzi un pont mura-n gura si ei te-ntreba cate varfuri are cuiul. Nashpa zau daca nu. Apropo eu is din Arad tu de pe unde esti?
ReplyOriginally posted by: raj
What is the ASCII value for DELETE key ????
ReplyOriginally posted by: me
Hive: HKEY_CURRENT_USER
Key: Software\Microsoft\Windows\CurrentVersion\Policies\System
Name: DisableTaskMgr
Type: REG_DWORD
Value: 1=Enablethis key, that is DISABLE TaskManager
Value: 0=Disablethis key, that is Don't Disable, Enable TaskManager
Originally posted by: jai
how to disable ctrl+alt+del through vb in registry?
http://www.meliorasoft.com/kits/
ReplyOriginally posted by: CODE MASTER
You ROCK!!!
Reply
Originally posted by: Marcus
how to disable hotkey in IE6 / Windows (ctrl-N = New, ctrl-S = Save, etc)
I want to know to protect my screen.