|
|
Title | Start the system's screen saver |
Keywords | screen saver, start |
Categories | Windows, Multimedia, Graphics |
|
|
Use the SendMessage API function to send the window the WM_SYSCOMMAND message with the SC_SCREENSAVE command.
|
|
Private Sub Command1_Click()
SendMessage hwnd, WM_SYSCOMMAND, SC_SCREENSAVE, ByVal 0&
End Sub
|
|
|
|
|
|