|
|
|
Click here to copy the following block |
Function GetNodeRelationship(ByVal node1 As TreeNode, ByVal node2 As TreeNode) _ As Integer If node1 Is node2 Then Return 0 ElseIf node1.FullPath.Length > node2.FullPath.Length Then If node1.FullPath.IndexOf(node2.FullPath) = 0 Then Do Until (node1.Parent Is Nothing) node1 = node1.Parent GetNodeRelationship = GetNodeRelationship - 1 If node1 Is node2 Then Exit Function Loop End If Else If node2.FullPath.IndexOf(node1.FullPath) = 0 Then Do Until (node2.Parent Is Nothing) node2 = node2.Parent GetNodeRelationship = GetNodeRelationship + 1 If node1 Is node2 Then Exit Function Loop End If End If
Return 0 End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|