FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour XBrowse: Using Get for incremental Seek/Filters
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: XBrowse: Using Get for incremental Seek/Filters
Posted: Mon Feb 08, 2021 10:48 AM
nageswaragunupudi wrote:You have to reset the items of the combobox on the basis of columns where oCol:lHide == .f.

How I not understood, I not Know how Make it

and then
aCols := { ;
{ "FIRST", "Nome",, 120, },;
is as // { field, header, picture, size, justify, sortorder } ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: XBrowse: Using Get for incremental Seek/Filters
Posted: Fri Feb 12, 2021 07:33 AM
nageswaragunupudi wrote:You have to reset the items of the combobox on the basis of columns where oCol:lHide == .f.


I can't do it
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: XBrowse: Using Get for incremental Seek/Filters
Posted: Thu Feb 18, 2021 08:21 PM
Nages,

I remember you the combobox 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 , how I can resolve ?

you sad me "You have to reset the items of the combobox on the basis of columns where oCol:lHide == .f. "

But I not understood How make it


today I set on xbrowse these lines

:lAllowRowSizing := .F.
:lAllowColSwapping := .F.
:lAllowColHiding := .F.

the user cannot change the column configuration

then I insert on a menu

MENUITEM "Colonne" ACTION ( SelectColumns( oBrw ),;
ChangeBrowse(oBrw,oCbx) )


on the function SelectColumns( oBrowse ) I open the configuration of Browse as you can see on this picture



if the user select a checkbox and then click on ok the procedure call this function

Code (fw): Select all Collapse
Function ChangeBrowse(oBrw,oControl)
            local aItems:= {}
            AEval( oBrw:aCols, { |o| If( o:lHide,,AAdd( aItems, o:cHeader ) ) } )
            oControl:setItems(aItems)
            oControl:refresh()
        return nil


oControl is the oCbx ( combobox ) on the dialog

when I call this function make error on combobox

Code (fw): Select all Collapse
   Error description: Error BASE/1004  No exported method: CEXPR
   Args:
     [   1] = U

Stack Calls
===========
   Called from:  => CEXPR( 0 )
   Called from: testmio.prg => (b)TABELLA( 113 )
   Called from: .\source\classes\COMBOBOX.PRG => TCOMBOBOX:CHANGE( 581 )


any solution pls ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

Continue the discussion