April 18, 2024, 05:48:52 PM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


Listview item doubleclick and rightclick

Started by ExMember001, July 29, 2006, 03:51:30 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ExMember001

I've look into the the help file but its seems there is no itemdoubleclick and itemrightclick codes
anyone know the codes to use for that?
or just tell me to wait if its not implemented yet ;)

Pip1957

Here are the defines you need:

#define CLICK         0xFFFFFFFE
#define DCLICK         0xFFFFFFFD
#define RCLICK         0xFFFFFFFB
#define DRCLICK         0xFFFFFFFA

ExMember001