To make applications like Tunerpro, MDI (Multiple Document Interface) forms need to be utilized so that multiple forms can all display inside of the application at one.
Generally in VS, you can declare your primary form as the MDI Parent. This means any child forms added will display inside the application viewing area only, and will automatically terminate when the application closes.
Now.. silly me, has made the application based on a tabbed GUI form. When I try add a child form to it.. it is hidden behind the tabbed GUI and is inaccessible.

But I have managed to find a workaround. Its not technically utilizing MDI but adds a custom form to a panel which is still limited to the application space.

The downfall of this is the application needs to handle closing all of these new forms and basically doing what the input features of a MDI parent does.
So for now.. its done my way. But I think I will be forced to do it the proper way to take advantage of built in functions such as cascaded forms to neatly display items.