Lock your workstation with this simple API call
Lock your workstation with this simple API call
Rate Lock your workstation with this simple API call
(1(1 Vote))
Public Declare Function LockWorkStation Lib "user32.dll" () As Long
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' ~~~~~~~~~~~~~~~~~~~~
' Paste the method below into
' your form with a Command
' button named Command1
' ~~~~~~~~~~~~~~~~~~~~
Private Sub Command1_Click()
Dim retval As Long
retval = LockWorkStation()
End Sub
Lock your workstation with this simple API call Comments
No comments yet — be the first to post one!
Post a Comment