Page 1 of 1

xbrowse multiselect cell

PostPosted: Mon Sep 05, 2022 1:24 pm
by damianodec
Hi to all, my problem,
in my xbrowse I have
Code: Select all  Expand view

oBrw:nMarqueeStyle  := MARQSTYLE_HIGHLCELL
 

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

Code: Select all  Expand view

:nMarqueeStyle := MARQSTYLE_HIGHLROWMS
 


how can I do it?

thank you

(xHarbour 17.09)

Re: xbrowse multiselect cell

PostPosted: Mon Sep 05, 2022 3:42 pm
by cmsoft
Puedes usar:
Code: Select all  Expand view
oBrw::SetMultiSelectCol()

Re: xbrowse multiselect cell

PostPosted: Mon Sep 05, 2022 5:20 pm
by nageswaragunupudi
damianodec wrote:Hi to all, my problem,
in my xbrowse I have
Code: Select all  Expand view

oBrw:nMarqueeStyle  := MARQSTYLE_HIGHLCELL
 

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

Code: Select all  Expand view

: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