| :: How to shutdown Windows 95... |
Author |
Tessarollo Livio |
Language |
VB5, VB6 |
Operating
Systems |
Windows 95 and 98 |
| API
Declarations |
Option Explicit
'-------------------------------------------------------
' exiting from windows 95
'-------------------------------------------------------
Public Declare Function ExitWindowsEx Lib "user32.dll" (ByVal uFlags As Long, ByVal
dwReserved As Long) As Long |
| Usage |
Private Sub Command1_Click()
Dim x As Integer
x = ExitWindowsEx(0, 0)
End Sub |
|
 |
|
 |