Re: Exact adress
Thursday, 18-Mar-99 19:26:37 That value (111h) is actually the WM_COMMAND message which is sent to the dialog box whenever the user does something to it. What the program is doing is to compare the value of wParam parameter of the dialogbox procedure to see if WM_COMMAND message is sent. If it is, the program will then compare the lParam parameter of the dialogbox (the line 401AAD retrieves value of lParam to eax), to check which item on the dialog box is being 'disturbed'. The program will then do some instructions based on the different lParam values. Normally the lParam value is the resource id of the items in the dialog box specified by the .rc file. Err...when you start doing some win32 programming, then you'll know what I mean. :P ytc_ |
op_Nemon's thread (n/t) (op_Nemon) (17-Mar-99 18:32:16) |