Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem using Treeview
Message
 
 
À
08/11/2001 02:46:15
Ashish Patel
Hindustan Petroleum
Mumbai, Inde
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Divers
Thread ID:
00578914
Message ID:
00579078
Vues:
30
This message has been marked as the solution to the initial question of the thread.
>Hi
>
>How to nevigate through all the nodes of the tree ?
>
>
>Pl. Help
>
>
>Ashish Patel

One way is to use the Count proeprty of the Nodes collection.
local lxx
With Treeview
   for lxx = 1 to .Nodes.Count
      ? .Nodes(lxx).Index
   endfor
Endwith
You can also use a FOR EACH loop.
With Treeview
   for each oNode in .Nodes
      ? oNode.Index
   endfor
Endwith
HTH.
Larry Miller
MCSD
LWMiller3@verizon.net

Accumulate learning by study, understand what you learn by questioning. -- Mingjiao
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform