How can I know if a TreeView has TreeNodes, regardless of whether they are parent or child nodes? I just want to avoid duplication. The pseudo-code looks like:
If TreeView1 has TreeNodes Then
'Remove old ones and create another
'Or Exit to skep creation of new ones
Else
'Create TreeNodes
End Sub