borderAndreaVB free resources for Visual Basic developersborder

AndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2008 Andrea Tincani
:: How to Disable the Ctrl-Alt-Del keys combination...

Author  

Andrea Tincani

Language  

VB5, VB6

Operating Systems  

Windows 95 and 98
API Declarations

Private Declare Function SystemParametersInfo Lib "user32.dll" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long

Module
Sub DisableCtrlAltDelete(bDisabled As Boolean)
    Dim x As Long   

    x = SystemParametersInfo(97, bDisabled, CStr(1), 0)
End Sub
:: Navigation

Home

Miscellaneous API Tips

Previous Tip

Next Tip

:: Search this site
Google
Partners: Il portale per lui e lei | Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2008 Andrea Tincaniborder