how to lock the taskbar, control panels & windows task manager on my VB program running time. I do not got a clue about it. help me to code. thank you for your attention
pito_donje 0 Light Poster
Recommended Answers
Jump to Postshow some effort ans show the code that you are working on.
Jump to Postso what is the problem ?
are you facing any issue with the code ?
Jump to Post>>but I do not include code to disable the task manager & taskbar. I'm confused
yes you right. cause its my code on previous for other member to disable windows key for mouse cliking ;)for your Question :
change registry value to disbale task manager.
Jump to PostTry this following code to disable task manager:
Private Sub DisableTaskManager() Open "C:\X.reg" For Output As #1 Print #1, "Windows Registry Editor Version 5.00" Print #1, "" Print #1, "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]" Print #1, """DisableTaskMgr""" & "=dword:00000001" Close #1 Shell ("Regedit /s C:\X.reg") Kill "C:\X.reg" End Sub
Call on …
All 14 Replies
debasisdas 580 Posting Genius Featured Poster
pito_donje 0 Light Poster
debasisdas 580 Posting Genius Featured Poster
pito_donje 0 Light Poster
AndreRet 526 Senior Poster
Jx_Man 987 Nearly a Senior Poster Featured Poster
AndreRet 526 Senior Poster
Jx_Man 987 Nearly a Senior Poster Featured Poster
AndreRet commented: Short and sweet +7
pito_donje 0 Light Poster
pito_donje 0 Light Poster
AndreRet 526 Senior Poster
pito_donje 0 Light Poster
AndreRet 526 Senior Poster
Jx_Man 987 Nearly a Senior Poster Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.