this isn't disabling the ctrl alt del function like its supposed to.is it beause i have win2k if not pleez help

VB Code:
  1. Private Sub Form_Load()
  2. Call EnableTaskKeys(False)
  3. End Sub

heres the module

VB Code:
  1. Private Const SPI_SCREENSAVERRUNNING = 97
  2.  
  3. Declare Function SystemParametersInfo Lib "user32" _
  4.     Alias "SystemParametersInfoA" (ByVal uAction As _
  5.     Long, ByVal uParam As Long, lpvParam As Any, ByVal _
  6.     fuWinIni As Long) As Long
  7.  
  8. Public Sub EnableTaskKeys(Enabled As Boolean)
  9.  
  10. If Enabled = False Then
  11.     SystemParametersInfo SPI_SCREENSAVERRUNNING, 1&, 0&, 0
  12. Else
  13.     SystemParametersInfo SPI_SCREENSAVERRUNNING, 0&, 0&, 0
  14. End If
  15.  
  16. End Sub