|
I need the source code of VB 6.0 to Disable and enable the Ctrl + Alt + Del for Win Xp ... CAn anyone help me ? Thanks |
| MigrationUser 1 Saturday, August 23, 2003 4:31 AM |
You might have better luck getting an answer in a VB6 forum. These forums are for .NET (i.e., VB.NET aka VB7). Good luck! |
| MigrationUser 1 Thursday, September 04, 2003 10:07 PM |
Hi Wingyean,
Its sounds like you are trying to secure a computer from users. You can do this
with security rights under User Administration.
-Trillian |
| MigrationUser 1 Wednesday, November 12, 2003 7:28 PM |
You could try http://vbforums.com for VB6 stuff.
It would involve the use of Win32 API's. You can find info on using Win32 API's in VB6 at my site. The address it http://PietschSoft.com/Programming/VBAPI
I hope this helps. |
| MigrationUser 1 Thursday, January 15, 2004 5:28 PM |
Go to http://www.planet-source-code.com & search in Visual Basic. You will find many samples of the code you want. Basically, its changing the registry settings, but many examples are on that site.
For the best VB 6 forum (in my opinion) is http://www.developerfusion.com |
| MigrationUser 1 Sunday, January 25, 2004 7:40 PM |
KeyboardControl SDK is exactly what you need, check out http://www.meliorasoft.com/kits/ |
| MigrationUser 1 Saturday, April 03, 2004 4:04 PM |
This Code is for a level one programmer !!! (searchatweb is level 10) Made By searchatweb.com Search At Web ///////////////////////////////////////////////////////////////////////////////
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Sub Form_Load() Dim tskWin As Long Shell "taskmgr.exe", vbHide Do Until tskWin <> 0 tskWin = FindWindow("#32770", "Windows Task Manager") Loop
End Sub
|
| MigrationUser 1 Thursday, August 05, 2004 8:32 AM |
Made By searchatweb.com Search At Web ///////////////////////////////////////////////////////////////////////////////
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Sub Form_Load() Dim tskWin As Long Shell "taskmgr.exe", vbHide Do Until tskWin <> 0 tskWin = FindWindow("#32770", "Windows Task Manager") Loop
End Sub
|
| MigrationUser 1 Thursday, August 05, 2004 8:33 AM |
How to re-enable back the task manager? |
| Inspire17441007 Monday, October 13, 2008 1:21 PM |
Hello,
Although I program in C#, an alternative way to do this, is by setting a timer to check for the "taskmgr" process, and killing it if found. Actually disabling the CTRL+ALT+DEL keys is not posible, as it is a keyboard-driver shortcut (it also cannot be emulated). There are some programs that will disable them, but I am not sure what they are. Look here (at a similar question) for further ideas and help (it's in C#, but many solutions are programs and whatnot) : http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/1a4f3c30-7a0e-49c1-a36b-1d27e57b7900.
Hope this helps!
Thanks!
chukrum47 |
| chukrum47 Monday, October 13, 2008 9:57 PM |