I was wondering how you would make tree-style tabs that could operate between pages on your program. It looks kinda like this: https://addons.mozilla.org/en-US/firefox/addon/5890/ I've seen it done before for VB, but never got how to. +rep
Looks like its just a fancy tree hierarchy. http://www.startvbdotnet.com/controls/treeview.aspx Just change up some of the icons and style it.
How would I get each node to toggle between "pages" (almost like tabs) within my program? I've figured out how I would like to design it, but I haven't figured out how it would exactly work in my program ...
Read the article I linked to. You just have to implement event listeners just like any other GUI component.
One more question: I've got these nodes in the treeview, but I am confused on how I would make a Panel be visible and the others not when the user clicks a node? I changed the property "Tag" of each node to its corresponding panel, but I dunno what to do after that.
Hm. I don't actually program in VB so I don't specifically know the code to do it. There should be some way to control the visibility of panels and stuff.