Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
The problem about seek nodes in treeview
Message
De
08/09/2002 22:29:34
 
 
À
08/09/2002 22:21:16
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Divers
Thread ID:
00698114
Message ID:
00698116
Vues:
17
Hi, Again
Sorry for the mass code, I will post that again.
loOleTree=This.Parent.Treeview
loOleTree.imagelist = Thisform.ImagesList.Object
loOleTree.Nodes.Clear
If !Empty(lsBR)
	Select Cate2Class.Category_ID,Category_Name,Class_Name,Class2BRand.Class_ID;
		From Categories,Cate2Class,Classes,Class2BRand,Brands;
		WHERE Alltrim(Cate2Class.Category_ID)==Alltrim(Categories.Category_ID) And Alltrim(Cate2Class.Class_ID)==Alltrim(Classes.Class_ID);
		AND Alltrim(Class2Brand.Class_ID)==Alltrim(Cate2Class.Class_ID) And Alltrim(Class2Brand.Brand_ID)==Alltrim(Brands.Brand_ID) And Alltrim(Brand_Name)==Alltrim(lsBR) ;
		ORDER BY Cate2Class.Category_ID, Cate2Class.Class_ID;
		INTO Cursor lcrTMP
	If _Tally!=0
		Select lcrTMP
		lsCT=""
		Scan All
			IF ALLTRIM(Category_ID)!=ALLTRIM(lsCT)
				loOleTree.Nodes.Add(,2, Category_ID, Category_Name,"CloseBook","OpenBook")
			ENDIF
			loNode=loOleTree.Nodes(Category_ID) **Error Message Pop out here
			lsCT=Alltrim(Category_ID)
			loOleTree.Expand(loNode)
			loOleTree.Nodes.Add(loNode,4,Class_ID,Class_Name,"CloseBook","OpenBook")
		Endscan
		Use
	Endif
Endif
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform