Search found 46 matches: cfilterfld

Return to advanced search

Re: lIncrFilter + MDI

... COLUMNS aFlds HEADERS aHdrs ; DATASOURCE (cAlias) AUTOSORT CELL LINES NOBORDER WITH OBJECT oBrw :lIncrFilter := .t. :lSeekWild := ( nWild == 2 ) :cFilterFld := "FIRST" :nStretchCol := STRETCHCOL_WIDEST END @ 10, 10 COMBOBOX oBrw:cFilterFld ; ITEMS aHdrs ; ON CHANGE ( oBrw:Seek( "" ...
by cpheraclio
Sun Jun 04, 2023 11:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 369

lIncrFilter + MDI

Funciona perfecto \samples\xbincflt.prg MDI oBrw:SetFocus() // con click NO RETORNA a oBrw @ 10, 10 COMBOBOX oBrw:cFilterFld ; ITEMS aHdrs ; ON CHANGE ( oBrw:Seek( "" ), oBrw:SetFocus() ) ; SIZE 50,400 PIXEL OF oDlg oDlg:oClient := oBrw oDlg:bPostEnd := {||oRs:Close(),oRs:=Nil} ...
by cpheraclio
Fri Jun 02, 2023 11:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 369

Re: FWH 2103: XBrowse: oSortCbx

... ast the combobox @ 10,20 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder SIZE 100,400 PIXEL OF oDlg ; ON CHANGE ( oBrw:Seek( "" ), ; oBrw:cFilterFld := oBrw:oCol( oBrw:cSortOrder ):cExpr, ; oBrw:SetFocus() ) It run but I wish Know if this is right for you, thanks at last , When we select ...
by Silvio.Falconi
Tue Jun 01, 2021 8:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2103: XBrowse: oSortCbx
Replies: 23
Views: 2918

Get search on TopBar of a Xbrowse

... to select the column on which to search https://i.postimg.cc/Pf9bkrGL/pren.jpg while the combobox run ok ( change the oBrowse:cFilterFld and refresh the xbrowse) when I digit a letter then the data is not searched Function test()  local cSeek := Space( 100 ...
by Silvio.Falconi
Fri May 28, 2021 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get search on TopBar of a Xbrowse
Replies: 1
Views: 364

Re: XBrowse: Using Get for incremental Seek/Filters

... on the dialog @ 40, 400 COMBOBOX oCbx VAR cHead ITEMS aHead ; SIZE 150,200 PIXEL OF oTabella ; ON CHANGE ( oBrw:Seek( "" ), ; oBrw:cFilterFld := oBrw:oCol( cHead ):cExpr, ; oBrw:SetFocus() ) where we list the caption of the columns but id the user change the columns configuration ...
by Silvio.Falconi
Thu Feb 18, 2021 8:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: XBrowse: Using Get for incremental Seek/Filters

... name? I need to use a dbf anf change text of columns I need have the system as xbincflt.prg with get and combobox controls @ 10, 10 COMBOBOX oBrw:cFilterFld ITEMS aHdrs // columns @ 10, 70 COMBOBOX nWild ITEMS { "Starting With", "Containing" } // @ 11,160 GET oGet VAR cSeek ...
by Silvio.Falconi
Mon Jan 04, 2021 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: XBrowse: Using Get for incremental Seek/Filters

Antonio, Nages @ 20, 280 COMBOBOX oCbx var oBrw:cFilterFld ; ITEMS aHdrs SIZE 150,400 PIXEL OF oDlg ; ON CHANGE ( oBrw:cFilterFld := "LAST",; oBrw:Seek( "" ),; oBrw:SetFocus() ) it's possible combobox not execute bchange codeblock ...
by Silvio.Falconi
Wed Dec 30, 2020 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: XBrowse: Using Get for incremental Seek/Filters

As the name suggests, oBrw:cFilterFld is to be assigned with a Field Name, not cHeader of a column. When the user selects a column in the combobox, you need to find of the name of the field used for that column and assign that name to ...
by Silvio.Falconi
Wed Dec 30, 2020 9:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: XBrowse: Using Get for incremental Seek/Filters

As the name suggests, oBrw:cFilterFld is to be assigned with a Field Name, not cHeader of a column.
When the user selects a column in the combobox, you need to find of the name of the field used for that column and assign that name to oBrw:cFilterFld.
by nageswaragunupudi
Wed Dec 30, 2020 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: XBrowse: Using Get for incremental Seek/Filters

... with the text of columns when I go to search it not found the name of first column "Dip" on change of combobox I tried to save on oBrw:cFilterFld the value of column selected @ 20, 280 COMBOBOX oCbx var oBrw:cFilterFld ; ITEMS aHdrs ; ON CHANGE ( nField:=::nat,; oBrw:cFilterFld := aColumns[nField],; ...
by Silvio.Falconi
Mon Dec 28, 2020 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3792

Re: Cómo resetear oBrw:oseek

... @ 2, 250 SAY oBrw:oSeek VAR oBrw:cSeek SIZE 100, 10 PIXEL OF oDlg COLOR CLR_HRED, CLR_YELLOW /* oBrw:lIncrFilter := .t. oBrw:lSeekWild := .t. oBrw:cFilterFld := "CODIGO_PRO" oBrw:bChange := {|| oBrw:oSeek:Refresh() <--- da error */ oBrw:lIncrFilter := .T. oBrw:lSeekWild := .T. oBrw:cFilterFld ...
by Ramón J.
Sat Dec 05, 2020 11:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo resetear oBrw:oseek [SOLUCIONADO]
Replies: 9
Views: 1417

Cómo resetear oBrw:oseek [SOLUCIONADO]

... @ 2,250 SAY oBrw:oSeek VAR oBrw:cSeek SIZE 100,10 PIXEL OF oDlg COLOR CLR_HRED,CLR_YELLOW /* oBrw:lIncrFilter := .t. oBrw:lSeekWild := .t. oBrw:cFilterFld := "CODIGO_PRO" oBrw:bChange := {|| oBrw:oSeek:Refresh() <--- da error */ oBrw:lIncrFilter := .t. oBrw:lSeekWild := .t. oBrw:cFilterFld ...
by Ramón J.
Mon Nov 30, 2020 9:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo resetear oBrw:oseek [SOLUCIONADO]
Replies: 9
Views: 1417

Re: Búsqueda incremental en Array filtrado

Thanks Mr. Rao

I solved it with: oBrw:cFilterFld:="COLUMN"

Regards,
by acuellar
Sat Jul 25, 2020 1:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Búsqueda incremental en Array filtrado
Replies: 6
Views: 1297

xBrowse: Change :cFilterFld when user click on header

Hi,
My xbrowse has autosort. How can I automatically change :cFilterFld based on which col header user clicks?

TIA
by hua
Mon Mar 23, 2020 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: Change :cFilterFld when user click on header
Replies: 0
Views: 247

Re: lSeekBar ONLY IN SOME COLUMNS xBROWSE

... search, also probe with the lines below and nothing, does not activate GET for search oBrw: lIncrFilter: = .t. oBrw: lSeekWild: = .t. oBrw: cFilterFld: = "mp_name" so I define my xBreowse       @ 0, 25 XBROWSE oBrwMP OF oWndMatPri NOBORDER UPDATE ;      ...
by joseluisysturiz
Wed Jul 04, 2018 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lSeekBar ONLY IN SOME COLUMNS xBROWSE
Replies: 4
Views: 1359
Next

Return to advanced search