Announcement

Collapse
No announcement yet.

ACCEL ATTACH and mouse

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

  • ACCEL ATTACH and mouse

    Is it possible to assign mouse event to accelerator?
    I tried this, but didn't worked

    accFORM(1).fvirt = %FVIRTKEY '
    accFORM(1).key = %VK_RBUTTON
    accFORM(1).cmd = %OPER_FORM_EXPAND_LIST

    May be combination of constants for .fvirt field is required?

  • #2
    The right mouse button is best trapped with a %WM_CONTEXTMENU case in your callback. ACCEL ATTACH will not see it.
    Rick Angell

    Comment


    • #3
      Thanks Richard!

      Comment

      Working...
      X