G
Guest
I have a WinForms application, part of which was done by another programmer.
It contains this code:
[DllImport("User32.dll", EntryPoint = "SendMessage")]
private static extern int SendMessage(int hWnd, int Msg, int wParam, int
lParam);
int ret = SendMessage((int)TCombo.Handle, 0x100,
0x73, 1);
I understand that this is a call to a function is user32.dll, but I can not
find a resource to lookup what function it is, or what it is doing. I
expected to be able to search for user32.dll, and get a list of functions it
contains, but I have failed. If anyone could guide me to such a list, I would
appreciate it.
As a bonus, it anyone could tell me what it is doing, and if there is a
proper WinForms way of doing it instead, that would be ideal.
Thanks.
It contains this code:
[DllImport("User32.dll", EntryPoint = "SendMessage")]
private static extern int SendMessage(int hWnd, int Msg, int wParam, int
lParam);
int ret = SendMessage((int)TCombo.Handle, 0x100,
0x73, 1);
I understand that this is a call to a function is user32.dll, but I can not
find a resource to lookup what function it is, or what it is doing. I
expected to be able to search for user32.dll, and get a list of functions it
contains, but I have failed. If anyone could guide me to such a list, I would
appreciate it.
As a bonus, it anyone could tell me what it is doing, and if there is a
proper WinForms way of doing it instead, that would be ideal.
Thanks.