Hi,

I think this is a pretty easy question, but I can't seem to find the answer in my search.

Let's say I have a treeview called treeview1. It's got three main nodes: BigNode1, BigNode2, and BigNode3. Each has some child nodes, like this:

Code:
BigNode1
   LittleNode1
   LittleNode2
   LittleNode3
BigNode2
   LittleNode4
   LittleNode5
   LittleNode6
BigNode3
   LittleNode7
   LittleNode8
   LittleNode9
How do I get a list of the child nodes for one of the big nodes?

Thanks in advance.
-Bret