|
-
Jun 19th, 2000, 09:29 AM
#1
Thread Starter
Lively Member
this code doesn't work or either it's in the wrong order.
I put this code in my for to disable ctrl alt del
I put this in the declorations part of my app
Private Declare Function SystemParametersInfo Lib _
"user32" Alias "SystemParametersInfoA" (ByVal uAction _
As Long, ByVal uParam As Long, ByVal lpvParam As Any, _
ByVal fuWinIni As Long) As Long
I put this in the form
Sub DisableCtrlAltDelete(bDisabled As Boolean)
Dim X As Long
X = SystemParametersInfo(97, bDisabled, CStr(1), 0)
End Sub
Call DisableCtrlAltDelete(True)
but it doesn't disable ctrl alt delete and ctrl esc and I got the code from the site section.
Timbudtwo
I have no life, only one with computers.
VB 6.0 Enterprise Edition
[hr]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|