I am connecting to MediaMonkey through the COM interface like this: SDBA = new SongsDB.SDBApplication();
Now, I would like to navigate through the nodes of the main tree, but I can't figure out how to get deeper than one layer. For instance, SDBA.MainTree.Node_Album gives me the album node, but how can I find the child nodes of that? And if I finally reach the bottom of the hierarchy, how do I find the tracks that are listed when this node is selected?
I am aware that I can find albums using better functions than this, but my goal isn't the albums, that's just an example. I am trying to replicate the entire tree structure, and find songs located inside a tree node.
Any suggestions?


(And yes, I know that a collection with ID=1 exists, I've gotten it by enumerating SDBA.Collections.)