Can you only check for one of these two messages?
This code always responds to the %STN_CLICKED.
Is it at all possible to get it to respond to whichever the user does? Click or doubleclick.
Code:
IF CB.CTLMSG = %STN_DBLCLK THEN MSGBOX FORMAT$(%STN_DBLCLK), %MB_TASKMODAL ELSEIF CB.CTLMSG = %STN_CLICKED THEN MSGBOX FORMAT$(%STN_CLICKED), %MB_TASKMODAL END IF
Is it at all possible to get it to respond to whichever the user does? Click or doubleclick.
Comment