Log in

View Full Version : WM_COMMAND HELP !!!


wallis
November 26th, 2002, 09:03
Hi,
New user of ollyDbg... a very great one !
Just a problem for me little newbie... To set a breakpoint wm_lbuttonup (for example...)
Is there anybody can help me ?

Ricardo Narvaja
November 26th, 2002, 09:27
The best for me is in CPU window, right click, search for names in this module,look for the api, TRANSLATE MESSAGE, mark, right click, SET LOG BREAKPOINT in every reference, in the window put

in CONDITION

MSG==202

and

mark in PAUSE PROGRAM - ON CONDITION and RUN

if you put

MSG==201

is for BUTTONDOWN and stop when you press the button is more util for me.

Ricardo Narvaja

wallis
November 26th, 2002, 22:35
many thanks for your help RICNAR !
Wallis

TBD
November 26th, 2002, 23:04
wallis: or you could use MSG==WM_LBUTTONDOWN it is easy to remember

Anonymous
November 30th, 2002, 00:35
really easiest to remember !!! thanks.