Search found 316 matches: otree

Return to advanced search

Re: New FTDN October/Octubre 2023 (FWH 23.10)

... EnumWindows() y EnumChildWindows(), ahora soportan llamadas recursivas. * Nuevo: Método Select() en la clase TTVItem, es equivalente a hacer oItem:oTree:Select( oItem ), así que ahora puedes simplemente hacer oItem:Select() * Mejora: DEFINE WINDOW ... SIZE nWidth, nHeight son soportados. * Nuevo: ...
by Antonio Linares
Sun Dec 03, 2023 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

New FTDN October/Octubre 2023 (FWH 23.10)

... functions EnumWindows() and EnumChildWindows() support recursive calls. * New: Class TTVItem METHOD Select(), it is equivalenf of doing oItem:oTree:Select( oItem ), so now you can simply do oItem:Select() * Enhancement: DEFINE WINDOW ... SIZE nWidth, nHeight is supported. * New: samples\winexpl.prg ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

Re: Inicie repositorio prueba e Tree

Prueba esto:

oTree:Scan( { | o | MsgInfo( o:cPrompt ), .F. } )
by Antonio Linares
Thu Aug 24, 2023 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 1107

Re: Inicie repositorio prueba e Tree

Usa oTree:bChanged
by Antonio Linares
Tue Aug 22, 2023 6:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 1107

Re: Inicie repositorio prueba e Tree

Comenta esta línea: // oTree:blclicked := { | nRow, nCol, nKeyFlags | oRama:= ::seleccionarRama( oTree, nRow, nCol, nKeyFlags ) } No puedes interferir el funcionamiento por defecto del botón izquierdo en el árbol y en este caso que necesito ...
by goosfancito
Tue Aug 22, 2023 1:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 1107

Re: Inicie repositorio prueba e Tree

Comenta esta línea:

// oTree:blclicked := { | nRow, nCol, nKeyFlags | oRama:= ::seleccionarRama( oTree, nRow, nCol, nKeyFlags ) }

No puedes interferir el funcionamiento por defecto del botón izquierdo en el árbol
by Antonio Linares
Tue Aug 22, 2023 11:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicie repositorio prueba e Tree (LO LOGRE)
Replies: 22
Views: 1107

Como borro una rama de un arbol?

Hola.
Como elimino una rama de un arbol?

Mi arbol se llama ::oTree, lo que hice es posicionarme en la rama que quiero
oItem := ::oTree:hitTest( nRow, nCol, nKeyFlags )
y me imagine que haciendo:
oItem:delete()
se borraria, pero no.

como lo tengo que hacer?
gracias.
by goosfancito
Wed Aug 09, 2023 7:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como borro una rama de un arbol?
Replies: 1
Views: 103

Re: xbrowse <-> Tree and viceversa

... what you're looking for and want to suggest a way to get it. 1. Declare a regular xbrowse on a dialog and also another xbrowse hosting an otree with the very same data source on another dialog. 2. Have both occupy the very same area. 3. When you want to show the regular browse, show that ...
by reinaldocrespo
Sat May 13, 2023 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse <-> Tree and viceversa
Replies: 12
Views: 663

Re: New FTDN April/Abril 2023 (FWH 23.04)

... ampliada y búsqueda siguiente. Nota: Los filtros incrementales aún no están soportados. - Se ha mejorado la función HashTree( hHash ) --> oTree. Ahora puede manejar matrices anidadas de hashes también. - Nuevo método ToArray( [aCols] ) --> aData - oCol:aDataFonts, aClrText, usados para ...
by Antonio Linares
Thu May 04, 2023 6:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1757

New FTDN April/Abril 2023 (FWH 23.04)

... := .t. Supports incremetal seek, wildseek and seeknext. Note: Incremental filters are not supported yet. - function HashTree( hHash ) --> oTree enhanced. Now can handle nested arrays of hashes also. - New METHOD ToArray( [aCols] ) --> aData - oCol:aDataFonts, aClrText, used for multiline ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1757

start with Xbrowse and view otree same xbrowse

... with an xbrowse, a search at the top https://i.postimg.cc/HWzHGQwm/comuni.png and I wanted to give the possibility to display an otree in the same xbrowse the user has to select the tree through a popup menu where I enter all the fields that the tree could do for example with ...
by Silvio.Falconi
Mon Mar 13, 2023 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: start with Xbrowse and view otree same xbrowse
Replies: 0
Views: 142

Re: Converte oTree into Xbrowse Tree

Ok Now run ok static function BuildTree(nTipo)local oTree, cState  SELECT GE  GE->(DbGoTop())     TREE oTree   do while !GE->(EOF())      if Empty( GE->GEPClave ...
by Silvio.Falconi
Fri Jan 20, 2023 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converte oTree into Xbrowse Tree
Replies: 2
Views: 233

Re: Converte oTree into Xbrowse Tree

... CELL   oBrw:SetTree( BuildTree(), { "open", "close", "go" } )    ADD TO oBrw DATA oBrw:oTreeItem:Cargo[ 1 ] HEADER "Sottocategoria"   oBrw:nMarqueeStyle = MARQSTYLE_HIGHLROW   oBrw:CreateFromCode()   oBrw:aCols[ ...
by Silvio.Falconi
Fri Jan 20, 2023 8:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converte oTree into Xbrowse Tree
Replies: 2
Views: 233

Converte oTree into Xbrowse Tree

... buildtree the Dbf have two Field GeMateria, GepClave all to 40/45 Cr https://i.postimg.cc/t4ttgRW2/gg.png function BuildTree( oTree,nTipo )   local oLink1, oLink2   DEFAULT  ntipo := 1  SELECT GE   GE->(DbGoTop())   IF ntipo=1      DO WHILE ! GE->(EOF())  ...
by Silvio.Falconi
Thu Jan 19, 2023 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converte oTree into Xbrowse Tree
Replies: 2
Views: 233

DBF REDE/WEB WINDOWS 7/10/11

... := Ctod( "15/"+cMesAno ) cAno := Right( cMesAno,4 ) cCompetencia := "01/2021" // cMonth( dData )+"/"+cAno // oMes := oTree:Add( cCompetencia,0 ) // Item Raiz do tree cField := Upper( "MOV_"+Substr(cCompetencia,1,3) ) // MsgStop( cCompetencia ) // "SWPanelRefresh( ...
by wanderson8
Sun Jan 08, 2023 3:10 pm
 
Forum: All products support
Topic: DBF REDE/WEB WINDOWS 7/10/11
Replies: 0
Views: 9372
Next

Return to advanced search