Search found 129 matches: multiselect

Return to advanced search

Re: XBROWSE ARRAY go to some ROW

... to one of the MARQSTYLE_HIGHLROW* constants. In your case, I presume you might have set it to MARQSTYLE_HIGHLROWMS. This style puts the browse in multiselect mode. If in multiselect mode, we need to add oBrw:Select(1) also before oBrw:Refresh(). oBrw:KeyNo := <nNew>oBrw:Select(1)oBrw:Refresh() ...
by nageswaragunupudi
Tue Jun 24, 2014 9:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ARRAY go to some ROW
Replies: 9
Views: 1754

Re: xbrowse, pintado de row completo?

...     // 5 Highlight row                        // 6 Highlight row & multiselect 6 Marcar la linea entera y permite multiselect
by cmsoft
Tue May 20, 2014 1:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse, pintado de row completo?
Replies: 2
Views: 262

Re: Row highlighting in xBrowse multiselect.

Try refreshing the browse.

oBrw:refresh()

James
by James Bott
Mon May 12, 2014 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Row highlighting in xBrowse multiselect.
Replies: 3
Views: 850

Re: Row highlighting in xBrowse multiselect.

James:

Thank you for your help. The UPDATE clause didn't worked. Any other suggestions ? Thank you.
by HunterEC
Mon May 12, 2014 6:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Row highlighting in xBrowse multiselect.
Replies: 3
Views: 850

Re: Row highlighting in xBrowse multiselect.

Maybe adding the UPDATE clause to the browse.
by James Bott
Mon May 12, 2014 2:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Row highlighting in xBrowse multiselect.
Replies: 3
Views: 850

Row highlighting in xBrowse multiselect.

Guys: When the following code is executed and the user types a value for an incremental search, the highlighted row remains the first one and not the one that has been found although the triangle to the left points to the correct record. Any clues on how to highlight the correct record ? Thank you. ...
by HunterEC
Mon May 12, 2014 9:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Row highlighting in xBrowse multiselect.
Replies: 3
Views: 850

Multiple calendars on one dialog

... .. I have looked at the samples TestCal.prg .. // Start Calendar 2                 @ 250, 001 CALENDAR oCal2 VAR dDate3, dDate4 OF oWnd PIXEL MULTISELECT DAYSTATE;              DBLCLICK MsgInfo( oCal2:GetDate() ) SIZE 550, 170 COLOR CLR_BLACK, CLR_HRED  It appears this is the ...
by Rick Lipkin
Fri Dec 06, 2013 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple calendars on one dialog
Replies: 3
Views: 905

Re: xBrowse y MULTISELECT

Saludos, sino quieres usar el ctrl podrias usar una columna para marcar y desmarcar los registros que estes seleccionando...es una emulacion , asi lo hago cuando uso un browse con seleccion de cheques o de varios registros a eliminar, espero te de idea, saludos... :shock:
by joseluisysturiz
Sat Nov 09, 2013 4:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y MULTISELECT
Replies: 1
Views: 529

xBrowse y MULTISELECT

Hola a todos,

hay alguna forma de poder elegir varios registros con el click del mouse nomás , no con CTRL+CLICK ????

Gracias.
Salu2, Ariel.
by Ariel
Fri Nov 08, 2013 12:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse y MULTISELECT
Replies: 1
Views: 529

Re: Multiple selection on a XBROWSE

... It's there a way like marking a checkbox in a column ? This way the user just clicks on the checkbox and forgets about pressing the Ctrl key for multiselect.
by HunterEC
Sun Oct 06, 2013 3:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple selection on a XBROWSE
Replies: 4
Views: 1370

Re: Visible Months in TCalendar

... 4 month vertical display ( from sample TESTCAL.prg ) : @ 2, 001 CALENDAR oCal2 VAR dDate3, dDate4 OF oWnd PIXEL MULTISELECT DAYSTATE; DBLCLICK MsgInfo( oCal2:GetDate() ) SIZE 250, 700 COLOR CLR_WHITE, CLR_HRED oCal2:SetDateRange( dDate1, dDate4 ) oCal2:bGotFocus ...
by ukoenig
Sat Sep 21, 2013 6:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Visible Months in TCalendar
Replies: 2
Views: 921

New FTDN August/Agosto 2013 (FWH 13.08)

... is created and assigned to such DATA then FWH automatically uses it. Please review FWH/samples/c5toolti.prg * Enhancement: XBrowse: When in MultiSelect mode, pressing Ctrl-A selects all rows. * New: xbrowse.prg: New functions XbrEditMemo(), XbrHexEdit() and XBrImageEdit() to provide enhanced ...
by Antonio Linares
Tue Sep 17, 2013 10:48 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2013 (FWH 13.08)
Replies: 0
Views: 2511

Re: XBROWSE RESTRINGIR MULTISELECT

oBrw:SelectAll() selects all rows.

I think it is Ctrl+A but not Ctrl+E.

To implement this behavior
Code: Select all  Expand view
     oBrw:bKeyChar         := { |nKey| If( nKey == 1, ( oBrw:SelectAll(), 0 ), nil ) }
 
by nageswaragunupudi
Sat Sep 07, 2013 4:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 5031

Re: XBROWSE RESTRINGIR MULTISELECT

en el Explorador de Windows, con las teclas:
CTRL+E, seleccionas todos los elementos,
en xbr. como se hace?
saludos..
by sysctrl2
Fri Sep 06, 2013 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 5031

Re: XBROWSE RESTRINGIR MULTISELECT

Glad you got it working now.
by nageswaragunupudi
Fri Sep 06, 2013 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 5031
PreviousNext

Return to advanced search