QUOTE(manu @ Jan 6 2005, 06:33 AM)
How will u set up a Screen Saver Password other than your Login password in WINDOWS 2000?..
i think you can't..where will you be required to enter your password? the only safe place for windows is the login screen..However, if you create your own .scr file then you can prompt for a password while exiting the screensaver

In visual basic to exit a screensaver
CODE
Private Sub frmMain_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove
'If the mouse moves any more then 10 points. Close the application
gTolerance += 1
If gTolerance > 10 Then
Me.Close()
End If
End Sub
Private Sub frmMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
'If any key is pressed, Close the application
Me.Close()
End Sub
Instead of
CODE
Me.Close()
you could write
CODE
password = "DasmER"
inputstring = inputbox("Enter your password:")
if inputstring = password then Me.Close()