Vertragsverwaltung-Klassenbibliothek  

frmSysadminMenu.ListNodeCollectionRecursive -Methode

Knoten rekursiv auslesen

[Visual Basic]
Private Sub ListNodeCollectionRecursive( _ 
ByVal tnParent As TreeNode, _ 
ByRef iSort As Integer
)

Parameter

tnParent
iSort

Quellcode

[Visual Basic]
    Private Sub ListNodeCollectionRecursive(ByVal tnParent As TreeNode, ByRef iSort As Integer) 
Dim tn As TreeNode 
If tnParent.GetNodeCount(False) > 0 Then 
tn = tnParent.Nodes(0) 
Else 
tn = Nothing 
End If 
ssort = 0 
Do Until tn Is Nothing 
iSort = iSort + 1 
ListNodeSave(tn, iSort) 
If tn.GetNodeCount(False) > 0 Then 
Call ListNodeCollectionRecursive(tn, iSort) 
End If 
tn = tn.NextNode 
Loop 
End Sub

Forderungen

Plattformen: Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Siehe auch

frmSysadminMenu