xbrowse multiselect cell

Post Reply
User avatar
damianodec
Posts: 422
Joined: Wed Jun 06, 2007 2:58 pm
Location: Italia
Contact:

xbrowse multiselect cell

Post by damianodec »

Hi to all, my problem,
in my xbrowse I have

Code: Select all | Expand


oBrw:nMarqueeStyle  := MARQSTYLE_HIGHLCELL
 

and I'd like multiselect cell with CTRL + mouse click like xbrowse multiselect when

Code: Select all | Expand


:nMarqueeStyle := MARQSTYLE_HIGHLROWMS
 


how can I do it?

thank you

(xHarbour 17.09)
FiveWin for xHarbour 17.09 - Sep. 2017 - Embarcadero C++ 7.00 for Win32
FWH 64 for Harbour 19.06 (MSVC++) Jun. 2019 - Harbour 3.2.0dev (r1904111533)
Visual Studio 2019 - Pelles C V.8.00.60 (Win64)
User avatar
cmsoft
Posts: 1297
Joined: Wed Nov 16, 2005 9:14 pm
Location: Mercedes - Bs As. Argentina
Been thanked: 2 times

Re: xbrowse multiselect cell

Post by cmsoft »

Puedes usar:

Code: Select all | Expand

oBrw::SetMultiSelectCol()
User avatar
nageswaragunupudi
Posts: 10729
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 10 times
Contact:

Re: xbrowse multiselect cell

Post by nageswaragunupudi »

damianodec wrote:Hi to all, my problem,
in my xbrowse I have

Code: Select all | Expand


oBrw:nMarqueeStyle  := MARQSTYLE_HIGHLCELL
 

and I'd like multiselect cell with CTRL + mouse click like xbrowse multiselect when

Code: Select all | Expand


:nMarqueeStyle := MARQSTYLE_HIGHLROWMS
 


how can I do it?

thank you

(xHarbour 17.09)


First Shift-Click on the current row or any other row. Then the behavior automatically changes to MARQSTYLE_HIGHLROWMS, though visually CELL is highlighted. Shift-Click and Ctrl-Click start working just like HIGHLROWMS.
This behavior continues till the selected block is cleared by normal clicking on any other cell.

Please try
Regards

G. N. Rao.
Hyderabad, India
Post Reply