Search found 3390 matches: column

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... the resource should be released by the programmer after ending the browse. - Fix: When own buttonbar is used, header-click fails to sort on the column. Fixed https://forums.fivetechsupport.com/viewtopic.php?f=3&p=269418&sid=c37ba41f76455848d6fa4810ba2938bd#p269418 * AdoFuncs: (source\function\adofuncs.prg) ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 29

Re: SetMultiSelectCol() on line

... not have :SetMultiSelectCol() if it does not have the :SetMultiSelectCol() the procedure must create the :SetMultiSelectCol() as the first column of the xbrowse and give the possibility to select the row If there are no selected rows in the xbrowse the procedure must remove the :SetMultiSelectCol() ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 177

Re: New txbrowse

Nageswarao never included the possibility of having default columns and those suggested by the programmer and those predefined by the end user, I made some changes created by Francisco and created a sub class of xbrowse Is it not a option to set the colums, ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 367

xbrowse problem with :bLClicked

...                oBrw:RefreshCurrent() ), ) }  but if I use the mouse in the first column the system works, that is, if there are still records selected it does not change the buttonbar menu, if I use the space bar to deselect or select ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 98

SetMultiSelectCol() on line

... selection, I would like to check whether SetMultiSelectCol() is activated in the xbrowse and if it has not been activated, activate it on first column before the selection. Obviously, when no records are selected, SetMultiSelectCol() must disappear how can I implement this?
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 177

Re: Tooltip of the selector column

Instead of
Code: Select all  Expand view
oBrw:bToolTips   := ;
         { | oBrw,r,c,f,oMouseCol,nMouseRow| MojColToolTip( oBrw,r,c,f,oMouseCol,nMouseRow ) }


can you please try
Code: Select all  Expand view
oBrw:bCellToolTips := { |o| o:Value }
by nageswaragunupudi
Tue Apr 09, 2024 5:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip of the selector column
Replies: 11
Views: 1363

Re: Tooltip of the selector column

I tried to test the code: [code]#include "FiveWin.ch"function Test()   USE CUSTOMER   DEFINE DIALOG oDlg SIZE 600,500 PIXEL   @ 10,10 XBROWSE oBrw SIZE -10,-10 PIXEL OF oDlg ;      DATASOURCE "CUSTOMER" AUTOCOLS ;      CELL LINES NOBORDER   oBrw:bToolTips   := ;  ...
by mtajkov
Sun Apr 07, 2024 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip of the selector column
Replies: 11
Views: 1363

Re: also error with btnbmp SHOWPOPUP

Use directly in the xBrowse column lc_oColDtImg := ::oBrw2161_AgentesDocImgs:AddCol()With Object lc_oColDtImg    :bStrData         := {||::oDsTmp_AgenteDocsImgs:N_AGE_DOCIMGS_dImagemData}  ...
by Giovany Vecchi
Tue Apr 02, 2024 1:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1704

Re: incremental search on Xbrowse

Are you trying incrseek when either the focus is on an editable setcheck column or when you have a multisel column ? Please try this change         if nKey == 32 .and. ::nMarqueeStyle <= MARQSTYLE_HIGHLROWRC .and. ;                     oCol:hChecked .and. ...
by Silvio.Falconi
Wed Mar 27, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2006

Re: incremental search on Xbrowse

Are you trying incrseek when either the focus is on an editable setcheck column or when you have a multisel column ? Please try this change         if nKey == 32 .and. ::nMarqueeStyle <= MARQSTYLE_HIGHLROWRC .and. ;      ...
by nageswaragunupudi
Tue Mar 26, 2024 3:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2006

Re: xbrowser, setorder DESC

ok.
And so that the column that is ordered by "SELECT" appears the TRIANGULITE as it is done?
by goosfancito
Mon Mar 25, 2024 8:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser, setorder DESC
Replies: 8
Views: 1675

Re: xbrowser, setorder DESC

If the column is already ordered oCol:SetOrder() toggles ASC and DESC.
You need not have set aCols[ 2 ]:SetOrder() because it was already in the descending order.
by nageswaragunupudi
Mon Mar 25, 2024 4:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser, setorder DESC
Replies: 8
Views: 1675

Re: To Nageswrao Del Objs on TscrollPanel

... .t. )   oPanel:Refresh()      return nil Sorry Nages, but not erase the btnbmp on Panelscroll I made //I want erase only from second column of oBrw oCol := oBrw:aCols[ 2 ] oCol:bLDClickData := { || Erase_Items(oBrw,oPanel) } Function Erase_Items(oBrw,oPanel,aData,oDlg,oFontSmall) ...
by Silvio.Falconi
Mon Mar 04, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 664

Re: TUrlLink on Xbrowse

... DblClick on Cell you can open a "extra" Dialog using TURLLink() --- as i know it is not possible to use a "external" Object as Column for XBROWSE Default XBROWSE can use CLASS TXBrwColumn or CLASS TXBrColCode Data must be Type "C,M,N,D" or BITMAP so e.g. you can´t ...
by Silvio.Falconi
Thu Feb 29, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 234

Re: TUrlLink on Xbrowse

... DblClick on Cell you can open a "extra" Dialog using TURLLink() --- as i know it is not possible to use a "external" Object as Column for XBROWSE Default XBROWSE can use CLASS TXBrwColumn or CLASS TXBrColCode Data must be Type "C,M,N,D" or BITMAP so e.g. you can´t ...
by Jimmy
Thu Feb 29, 2024 5:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 234
Next

Return to advanced search