Search found 88 matches: blclickheader

Return to advanced search

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... AL_CENTER oBrw:aCols[2]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[2]:nWidth := 100 oBrw:aCols[2]:cSortOrder := "cod_art" oBrw:aCols[2]:bLClickHeader := {|| oBrw:GoTop() } oBrw:aCols[2]:cToolTip :="Haga doble Click para ordenar por código" oBrw:aCols[3]:cHeader := "Detalle" ...
by kpidata
Fri Sep 01, 2023 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE
Replies: 1
Views: 331

evitar que se active columna con xbrowse al dar un click

... AL_CENTER oBrw:aCols[2]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[2]:nWidth := 100 oBrw:aCols[2]:cSortOrder := "cod_art" oBrw:aCols[2]:bLClickHeader := {|| oBrw:GoTop() } oBrw:aCols[2]:cToolTip :="Haga doble Click para ordenar por código" oBrw:aCols[3]:cHeader := "Detalle" ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1077

Re: Know the Column number clicked on the TXBrowse Header

...  XBROWSER "clients" SETUP ( oBrowser := oBrw,;      AEval( oBrw:aCols, { | o | o:bLClickHeader := { | nMRow, nMCol | MsgInfo( oBrowser:MouseColPos( nMCol ) ) } } ) )return nil Basically all ...
by Antonio Linares
Thu Nov 17, 2022 8:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469

Re: xBrowse bLClickHeader

Do not worry.
We are here to help each other.
Regards.
by FranciscoA
Thu Mar 17, 2022 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse bLClickHeader
Replies: 3
Views: 284

Re: xBrowse bLClickHeader

Yes, Francisco... that's working fine now!
Many thanks.
After so many years without FWH coding I make a lot of silly mistakes, sorry.
Detlef
by Detlef
Thu Mar 17, 2022 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse bLClickHeader
Replies: 3
Views: 284

Re: xBrowse bLClickHeader

Try
Code: Select all  Expand view
:bLClickHeader := { || msginfo( oBrw:nArrayAt ) }
by FranciscoA
Thu Mar 17, 2022 12:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse bLClickHeader
Replies: 3
Views: 284

xBrowse bLClickHeader

Hi all, I have an issue when double clicking an xBrowse header. If I run the program below the codeblock bLClickHeader is executeted on start of the dialog. ( no click at all ) But when I click the header the codeblock is not fired. What could be wrong? regards, Detlef #include ...
by Detlef
Wed Mar 16, 2022 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse bLClickHeader
Replies: 3
Views: 284

Re: xbrowse + Tdolphin + Mysql

... oFont ) :SetGroupHeader( 'CONDICIONES DE PAGO', 9, 12, oFont ) :SetDolphin( oQry, .F. ) END oBrw:aCols[01]:cOrder = "A" oBrw:aCols[01]:bLClickHeader := {|| SetOrden(oBrw:aCols[01],"doc+0 ASC",oQry )} oBrw:aCols[02]:bLClickHeader := {|| SetOrden(oBrw:aCols[02],"serie+numero ...
by CARLOS ATUNCAR
Mon Oct 18, 2021 2:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse + Tdolphin + Mysql
Replies: 2
Views: 465

Re: xBrowse and bLClickHeader

It works

Thanks Navorro
by Maurizio
Fri Oct 15, 2021 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and bLClickHeader
Replies: 2
Views: 407

Re: xBrowse and bLClickHeader

Dear Maurizio, try with

Code: Select all  Expand view


         WITH OBJECT :oCol( 3 )
            :cSortOrder     := nil
            :cOrder         := nil
         END
 
by cnavarro
Thu Oct 14, 2021 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and bLClickHeader
Replies: 2
Views: 407

xBrowse and bLClickHeader

Hello RAO
I have an xbrowse with AutoSort: = .t. and bLClickHeader on some columns.
Is it possible not to execute setorder on columns that have bLClickHeader?
Regards Maurizio
by Maurizio
Thu Oct 14, 2021 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and bLClickHeader
Replies: 2
Views: 407

ArrayIncrFilter

... || TRANSFORM( oSumaTotal,"999,999,999") } Endif next oFld:aDialogs[ I ]:bInit := {|| oBrw[I]:aCols[1]:SetOrder(), Eval(oBrw[I]:aCols[1]:bLClickHeader) } *** ESTO 3 NO ME FUNCIONAN PARA MOSTRAR LO Q BUSCO SE CAE * @ 20,20 SAY oBrw[I]:oSeek VAR oBrw[I]:cSeek SIZE 150,20 PIXEL OF oDlg COLOR ...
by jbrita
Thu Apr 01, 2021 2:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ArrayIncrFilter
Replies: 2
Views: 634

Re: chenge on line a combo

thanks RAO I must insert it on click on header ? I tried with :bLClickHeader := { ||changeBrw(oBrw,aHdrs,oCbx) } #include 'fivewin.ch'#include 'ord.ch'#include 'xbrowse.ch'#include 'hbcompat.ch'REQUEST DBFCDX//----------------------------------------------------------------------------//function ...
by Silvio.Falconi
Mon Nov 16, 2020 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5336

Re: chenge on line a combo

... is an error that you should fix If you use the header name and not the number of the column, Xbrowse is using the correct field. oBrw4:kleuren:bLClickHeader := { |r,c,f,oCol| head_col(oCol:Value),oBrw:refresh() } oBrw4:maten:bLClickHeader := { |r,c,f,oCol| head_size(oCol:Value),oBrw:refresh() ...
by Silvio.Falconi
Fri Nov 13, 2020 11:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5336

Re: chenge on line a combo

... is an error that you should fix If you use the header name and not the number of the column, Xbrowse is using the correct field. oBrw4:kleuren:bLClickHeader := { |r,c,f,oCol| head_col(oCol:Value),oBrw:refresh() } oBrw4:maten:bLClickHeader := { |r,c,f,oCol| head_size(oCol:Value),oBrw:refresh() ...
by Marc Venken
Thu Nov 12, 2020 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5336
Next

Return to advanced search

cron