CLICK and DBLCLK in edit box (OpenInsight Specific)
At 20 NOV 1998 06:34:04AM Oystein Reigem wrote:
Edit boxes have CLICK and DBLCLK events, but I cannot seem to get them to work.
I feel really confused. I thought I had done this before, but searching all of my code I realize I haven't. I know I had to qualify events to get an RTF edit box to work, but that guy is special anyway. Must I really qualify mouse events for normal edit boxes too?
- Oystein -
At 20 NOV 1998 08:58AM Gene Gleyzer wrote:
Oystein,
The CLICK and DBLCLICK are only produced by the RTF Edit Box (which is a custom control). The regular Edit Box (which is the standard Windows "Edit" control with ES_MULTILINE style set) does not generate those (see Windows SDK: WM_COMMAND, EN_* notifications), so to intercept them you have to use WINMSG.
Gene
At 23 NOV 1998 05:20AM Oystein Reigem wrote:
Gene,
Thanks. No problem. WINMSG will work fine.
- Oystein -