FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Key´s
Posts: 603
Joined: Sun May 04, 2008 08:44 PM
Key´s
Posted: Thu Oct 15, 2009 06:36 PM

How translate key´s &H2 para fivewin ?

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: Key´s
Posted: Thu Oct 15, 2009 09:41 PM
Lailton,

Code (fw): Select all Collapse
#define MOUSEEVENTF_MOVE        0x0001 /* mouse move */
#define MOUSEEVENTF_LEFTDOWN    0x0002 /* left button down */
#define MOUSEEVENTF_LEFTUP      0x0004 /* left button up */
#define MOUSEEVENTF_RIGHTDOWN   0x0008 /* right button down */
#define MOUSEEVENTF_RIGHTUP     0x0010 /* right button up */
#define MOUSEEVENTF_MIDDLEDOWN  0x0020 /* middle button down */
#define MOUSEEVENTF_MIDDLEUP    0x0040 /* middle button up */
#define MOUSEEVENTF_XDOWN       0x0080 /* x button down */
#define MOUSEEVENTF_XUP         0x0100 /* x button down */
#define MOUSEEVENTF_WHEEL       0x0800 /* wheel button rolled */
#define MOUSEEVENTF_VIRTUALDESK 0x4000 /* map to entire virtual desktop */
#define MOUSEEVENTF_ABSOLUTE    0x8000 /* absolute move */

The values are inside c:\bcc55\include\winuser.h
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 603
Joined: Sun May 04, 2008 08:44 PM
Re: Key´s
Posted: Thu Oct 15, 2009 10:07 PM

gracias.

perfecto

Continue the discussion