C
chunfly
Unregistered / Unconfirmed
GUEST, unregistred user!
BOOL PostMessage(
HWND hWnd, // handle of destination window
UINT Msg, // message to post
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
对WPARAM 和 LPARAM 不懂,请讲解一下WPARAM 和 LPARAM!
如下代码,为什么不同而实现相同功能?
PostMessage(edit1.handle,wm_keydown,vk_return,1);
PostMessage(edit1.handle,wm_nextctrl,0,0);
HWND hWnd, // handle of destination window
UINT Msg, // message to post
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
对WPARAM 和 LPARAM 不懂,请讲解一下WPARAM 和 LPARAM!
如下代码,为什么不同而实现相同功能?
PostMessage(edit1.handle,wm_keydown,vk_return,1);
PostMessage(edit1.handle,wm_nextctrl,0,0);