Hi,
Do u know how i could swap the positions betwen an item on a tree? (for example, i need to move item 1 to position Item 3 )
Thanks a lot !
Do u know how i could swap the positions betwen an item on a tree? (for example, i need to move item 1 to position Item 3 )
#include "FiveWin.ch"
FUNCTION Main()
local oWnd, oTree, oItem1
local oChild1,oChild2,oChild3
DEFINE WINDOW oWnd FROM 3, 6 TO 20, 70 COLOR "N/W"
oTree := TTreeView():New( 2, 0, oWnd )
oItem1 := oTree:Add( "Page - 1", 1 )
oChild1 := oItem1:Add( "Item 1", 1 )
oChild2 := oItem1:Add( "Item 2", 1 )
oChild3 := oItem1:Add( "Item 3", 1 )
oWnd:oClient := oTree
ACTIVATE WINDOW oWnd
RETU NILThanks a lot !
Salutacions, saludos, regards
"...programar es fácil, hacer programas es difícil..."
UT Page -> https://carles9000.github.io/
Forum UT -> https://discord.gg/bq8a9yGMWh
HIX -> https://github.com/carles9000/hix
"...programar es fácil, hacer programas es difícil..."
UT Page -> https://carles9000.github.io/
Forum UT -> https://discord.gg/bq8a9yGMWh
HIX -> https://github.com/carles9000/hix