EDIT: Just realized i was in the wrong forum. Sorry


.ELSEIF uMsg==WM_COMMAND
mov eax,wParam
.IF ax==blahblah
blabla
.ELSEIF ax==WM_LBUTTONDOWN
invoke Beep,NULL,NULL

I get no Beep with this code when i left clickin in the client area.

The Win32 api states the WM_LBUTTONDOWN message is sent in WM_COMMAND.

maybe i don't have something else set?
Any help appreciated.:confused:
Posted on 2001-09-08 12:04:19 by titan
Try this


.ELSEIF uMsg==WM_COMMAND
mov eax,wParam
.IF ax==blahblah
blabla
.ENDIF
.ELSEIF uMsg==WM_LBUTTONDOWN
invoke Beep,NULL,NULL
Posted on 2001-09-08 12:09:56 by MovingFulcrum