Search found 25 matches: linklist

Return to advanced search

FW 23.07 Xbrowse, oCol:Cargo is NIL

I use oCol:Cargo to save some parameters.
Since FW 23.07 it does not work anymore, maybe due to:
LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with
three new parameters.
Param.3 nCol: Default 0: Sorts on nCol of Cargo Array

How can I find a workaround?
Suggestions are welcome.
by frose
Sun Sep 10, 2023 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW 23.07 Xbrowse, oCol:Cargo is NIL
Replies: 4
Views: 255

Re: New FTDN July/Julio (FWH 23.07)

... samples\webview.prg y webvieweval.prg * Mejora: La clase TListView es compatible con Unicode. Prueba el ejemplo: samples\testvie1.prg * Clase LinkList: Se ha mejorado el método Sort( [lAsc], [lRecurse], [nCol] ) con tres nuevos parámetros: 1.- lAsc: .T. o "A" para ordenación ascendente ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1065

New FTDN July/Julio (FWH 23.07)

... Please review samples\webview.prg and webvieweval.prg * Enhancement: TListView class is now made Unicode compatible Try samples\testvie1.prg * LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with three new parameters. Param.1 lAsc: .T. or "A" for ascending sort and .F. ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1065

Re: pudieron avanzar en ordenacion de un tree?

First, you need to modify the fwh program fwh\source\classes\linklist.prg In this program please replace the existing METHOD Sort() with this revised new method: METHOD Sort( lAsc, lRecurs ) CLASS TLinkList   local oPrev, oNext, n, aItems := {}  ...
by nageswaragunupudi
Tue Jul 11, 2023 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: pudieron avanzar en ordenacion de un tree?
Replies: 11
Views: 666

Re: New FTDN January/Enero 2021 (FWH 21.01)

... si el programador no especifica ninguna imagen de mapa de bits, xBrowse proporciona imágenes de mapas de bits por defecto. * TREES: (Clase LinkList) - Hereda de la clase TTreeItem. Ahora es posible derivar la clase de TTreeItem y crear árboles con la misma sintaxis de comando usando la ...
by Antonio Linares
Sun Feb 07, 2021 9:15 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

New FTDN January/Enero 2021 (FWH 21.01)

... if treeitem:cargo is a hash. - For tree browses, if the programmer does not specify any bitmaps, xbrowse provides default bitmaps. * TREES: (LinkList class) - Inheritance from TTreeItem class. It is now possible to derive class from TTreeItem and create trees with the same command syntax ...
by Antonio Linares
Sun Feb 07, 2021 9:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

Re: An easy way to make a tree-browse

please see these methods
METHOD OpenAll()
METHOD Expand( nLevel )
METHOD Collapse( nLevel )
in linklist.prg
by nageswaragunupudi
Sat Jul 13, 2019 9:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3522

Re: [HM] New post at Harbour Magazine

... notes, too. With the program you are independent of the browsers you use. Best regards, Otto http://www.atzwanger-software.com/fw/linklist.jpg
by Otto
Fri May 11, 2018 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [HM] New post at Harbour Magazine
Replies: 3
Views: 699

Re: problem w with FWH 16.12 and xHB.com

... [Source\Classes\ini.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\internet.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\linklist.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\listbox.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\mdichild.prg] ...
by kajot
Sun Dec 25, 2016 9:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem w with FWH 16.12 and xHB.com
Replies: 11
Views: 4975

Recompilar FiveHMX para xhb.com

... "Obj\iget.obj" "Obj\igroup.obj" "Obj\image.obj" "Obj\ini.obj" "Obj\internet.obj" "Obj\linklist.obj" "Obj\listbox.obj" "Obj\mdichild.obj" "Obj\mdiclien.obj" "Obj\mdiframe.obj" "Obj\menu.obj" ...
by russimicro
Mon Dec 01, 2014 5:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recompilar FiveHMX para xhb.com
Replies: 2
Views: 826

Re: Xbrowsing a Tree without loading in Memory

Instead of the approach I suggested above, I am posting a sample using LinkList, but without reading the data into the memory. I have used states.dbf and customer.dbf in the fwh\samples folder as Parent and Child dbfs respectively. I suggest you compile and ...
by nageswaragunupudi
Fri Jan 04, 2013 6:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowsing a Tree without loading in Memory
Replies: 10
Views: 3596

Xbrowsing a Tree without loading in Memory

... is not homogenous to the rows to be inserted on the xbrowse from the sales table. That behavior is known to many on this forum as xbrowsing a LinkList (or tree). As in: oBrw:SetTree( ::buildTree() )  The problem with xbrowsing a tree is that the tree must be created in memory ...
by reinaldocrespo
Sun Dec 16, 2012 10:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowsing a Tree without loading in Memory
Replies: 10
Views: 3596

Re: xBrowse Table records with a subtree

... fwh by xbrowsing a tree. But you can't make a tree out of large table -such as any real world master table. After about 10k records, an in memory linklist stops being practical. Any real world master table will be 20 times that size. Reinaldo.
by reinaldocrespo
Sun Dec 16, 2012 12:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Table records with a subtree
Replies: 9
Views: 2185

Re: Error en TreeItem ( tree inside xBrowse)

Hello, possible solution: linklist.prg METHOD Add( cPrompt, nLevel, hBmpOpen, hBmpClose, lOpened, bAction, uCargo ) CLASS TLinkList   local oItem   DEFAULT lOpened := .f., nLevel := If( ::oFirst != nil, ::oFirst:nLevel,)  ...
by Marcelo Via Giglio
Tue May 10, 2011 1:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error en TreeItem ( tree inside xBrowse)
Replies: 5
Views: 1644

Re: xBrowse Tree (SKIPPER) urgent help

... help for xbrowse:otree skipper or xbrowse skipper to check if :otreeitem:cargo == condition? Kind regards, Frances It is not impossible to change LinkList ( oTree ) skipper. But providing filtering mechanism in the Trees involves more changes to the class including number of rows, serial number ...
by nageswaragunupudi
Wed Mar 23, 2011 6:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Tree (SKIPPER) urgent help
Replies: 13
Views: 4227
Next

Return to advanced search