akia
Jan 28th, 2002, 09:14 PM
I have written the code to start the Screen Saver in both C and VB, the C code works fine, but for some reason, the VB code opens up the dialoge box that warns windows is about to go into tand by. I am confused, I'm sending C the same parameters as VB, but they are behaving differently.
My code:
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lParam As Any) As Long
Const WM_SYSCOMMAND = &H112
Const SC_SCREENSAVE = &HF140&
Private Sub SomeSub()
SendMessage(Form1.hwnd, WM_SYSCOMMAND, SC_SCREENSAVE, 0)
End Sub
Thankyou, akia
My code:
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lParam As Any) As Long
Const WM_SYSCOMMAND = &H112
Const SC_SCREENSAVE = &HF140&
Private Sub SomeSub()
SendMessage(Form1.hwnd, WM_SYSCOMMAND, SC_SCREENSAVE, 0)
End Sub
Thankyou, akia