Announcement

Collapse
No announcement yet.

Unknown %WM_?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Unknown %WM_?

    Can anyone identify Window message value &H118?

    I was subclassing an Edit control to make it behave like a list
    box so that one line, and only one, is always highlihted
    (selected). Trouble was, when the left mouse button was
    pressed on a line (thus highlighting line) and held down, the
    selection got truncated at the mouse/caret position. I
    eventually traced problem to be due to wMsg = &H118.
    Swallowing this message in the subclassing procedure (ie. do
    nothing, return zero) cured the problem.

    Keith


    ------------------

  • #2
    The message definitions in WINUSER.H jump from WM_INITMENUPOPUP (0x0117) to WM_MENUSELECT (0x011F). A scan does not show any definition of 0x0118 in any of the files.

    ------------------
    Tom Hanlin
    PowerBASIC Staff

    Comment

    Working...
    X