microcephalic
Member
- Joined
- Nov 6, 2004
- Messages
- 16
I am trying to figure out how to obtain the values needed to successfully execute a SendMessage Im using to try to close a dialog box.
My question is how do I figure out the value of my window (the hwnd value), the message I want to send (the wMsg value), and the remaing parameter values (wParam and lParam)?
My question is how do I figure out the value of my window (the hwnd value), the message I want to send (the wMsg value), and the remaing parameter values (wParam and lParam)?
Code:
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
(ByVal hwnd As Integer, _
ByVal wMsg As Integer, _
ByVal wParam As Integer, _
ByVal lParam As Long) As Integer