Search found 75 matches: ttvitem

Return to advanced search

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

... json. * Mejora: En las funciones 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 ...
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: 3889

New FTDN October/Octubre 2023 (FWH 23.10)

... ) now displays in formatted json text. * Enhancement: 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 ...
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: 3889

Re: problemas con END() en el nodo raiz de un tree

Estimado Gustavo, Tienes que modificar el método End() en source\classes\TTVITEM.PRG de esta manera: METHOD End() CLASS TTVItem   local nAt := 0   if ! Empty( ::oParent )      nAt := AScan( ::oParent:aItems, { | o | o == Self } ...
by goosfancito
Sat Aug 12, 2023 6:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas con END() en el nodo raiz de un tree
Replies: 2
Views: 122

Re: problemas con END() en el nodo raiz de un tree

Estimado Gustavo, Tienes que modificar el método End() en source\classes\TTVITEM.PRG de esta manera: METHOD End() CLASS TTVItem   local nAt := 0   if ! Empty( ::oParent )      nAt := AScan( ::oParent:aItems, ...
by Antonio Linares
Sat Aug 12, 2023 5:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas con END() en el nodo raiz de un tree
Replies: 2
Views: 122

problemas con END() en el nodo raiz de un tree

... Error BASE/1004 No existe el método: AITEMS Args: [ 1] = U Stack Calls =========== Called from: => AITEMS( 0 ) Called from: .\source\classes\TTVITEM.PRG => TTVITEM:END( 166 ) que puede estar pasando?
by goosfancito
Fri Aug 11, 2023 2:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas con END() en el nodo raiz de un tree
Replies: 2
Views: 122

Re: "Name" of TOLE

... oTreeNext   DoTreeRecursiv( oFolderItem, xLevel + 1, .F., .F., .F., .F.,oTreeNext ) 02.12.2022 16:24:51: DOTREEACTION( 0 ) xFolder = TTVITEM 02.12.2022 16:24:51: DOTREEACTION( 0 ) oFolderItem:cClassName = 02.12.2022 16:24:51: DOTREEACTION( 0 ) oTreeNext = TTVITEM as that CODE is working ...
by Jimmy
Fri Dec 02, 2022 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Name" of TOLE
Replies: 6
Views: 481

Re: download iPhone Photo connect to PC

hi Antonio, have change Concept and now it work :) my "Problem" was to handle 2 x 2 Object : Fivewin TTreeView/TTVItem and Windows Folder/Folderitem when work with TTreeView/TTVItemto build "static" Tree all work but when add Child "dynamic" i have to ...
by Jimmy
Wed Nov 30, 2022 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: download iPhone Photo connect to PC
Replies: 14
Views: 985

Re: Negrita en in ITEM del tree?

... != NIL )            oSubItem:GetSelected():Bold()         ENDIF  Error description: Error BASE/1004 Message not found: TTVITEM:GETSELECTED Args: [ 1] = O TTVITEM Stack Calls =========== Called from: => __ERRRT_SBASE( 0 ) Called from: ../../../tobject.prg => TTVITEM:ERROR( ...
by goosfancito
Wed Apr 27, 2022 11:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Negrita en in ITEM del tree?
Replies: 20
Views: 1618

Re: New FTDN November/Noviembre (FWH 21.11)

... Muchas gracias a Hakan Onemli: http://fivetechsupport.com/forums/viewtopic.php?p=243513#p243513 * Nuevo: Nuevo método Bold( lOnOff ) en la clase TTVItem, para poner en negrita un item de un TTreeView. * Clase TArrayData (tarrdata.prg) - Puede asignar un valor a un campo en todas las filas mediante ...
by Antonio Linares
Tue Nov 30, 2021 10:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 1001

New FTDN November/Noviembre (FWH 21.11)

... and Hakan Onemli: http://fivetechsupport.com/forums/viewtopic.php?p=243513#p243513 * New: Class TTVItem Method Bold( lOnOff ) to set bold an item of a TTreeView. * Class TArrayData (tarrdata.prg) - Can assign a value to a field in all rows by oData:cFieldNameS ...
by Antonio Linares
Tue Nov 30, 2021 7:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 1001

tree y el gotop()

Hola.

quiero conocer el "hitem" del primer item de un tree. he intentado hacer
::oTree:gotop()
pero me dice
Error description: Error BASE/1004 Message not found: TTVITEM:GOTOP


no se como moverme dentro de un tree :( como lo hago?
by goosfancito
Thu Nov 25, 2021 9:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tree y el gotop()
Replies: 1
Views: 171

Re: cantidad de items en un TREE

... CLASS TTreeView   local nItems := 0, bAction := { | oItem | nItems++, .F. }   ::Scan( bAction )return nItems Ahora en la Clase TTVItem añadimos estos métodos: METHOD Len() INLINE Len( ::aItems ) y METHOD Count() CLASS TTVItem   local oItem, nItems := 1   for each oItem ...
by Antonio Linares
Mon Sep 13, 2021 6:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: cantidad de items en un TREE
Replies: 14
Views: 1085

Re: Negrita en in ITEM del tree?

Si En la Clase TTVItem tienes que añadir este nuevo método: METHOD Bold( lOnOff ) INLINE TVSetItemBold( ::oTree:hWnd, ::hItem, lOnOff ) y al final de tu PRG esribe: #pragma BEGINDUMP#define _WIN32_IE 0x0500#include <Windows.h>#include ...
by Antonio Linares
Wed Aug 25, 2021 3:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Negrita en in ITEM del tree?
Replies: 20
Views: 1618

TTVItem and lDblClick

Hi,

I need to handle lDblClick on TTVItem elements that are not a tree. i.e. len (aItems)=0 How can I do this ?
by Natter
Tue Feb 09, 2021 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTVItem and lDblClick
Replies: 0
Views: 193

Re: New FTDN December/Diciembre 2020 (FWH 20.12)

... http://forums.fivetechsupport.com/viewtopic.php?f=3&t=39715&start=0 * Mejora: Nuevo método ACCESS/ASSIGN "cPrompt" para la clase TTVItem. * Nuevo: Nuevo ejemplo de Gestor de Información Personal usando TreeViews, samples\pim.prg. * Corrección: El ejemplo samples\xmltree tenía ...
by Antonio Linares
Mon Dec 28, 2020 3:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2551
Next

Return to advanced search