Two questions. First, what does MS recommend / offer for creating those
nifty slide-out dialogues (?) that Visual Studio has? Yes I'm talking about,
for example, the default behavior of the Toolbox, or Properties dialogues in
Visual Studio, which slide back and forth (Unless you select the push-pin).
I don't even know what that "sliding" control is called, no less how to put
one on my WinForm. Help?
Second question: what effectively is the difference between a SplitContainer
and a Splitter? Why choose one over the other?
Stoitcho Goutsev (100) - 23 Feb 2006 14:40 GMT
Mystagogue,
1. AFAIK that sliding feature is called "auto-hide". I personally don't know
if the winforms supports it out of the box.
2. Most often when programmers use splitters they put two panels separated
by a splitter and then add more controls to the panels. Because this is the
usual configuration MS decided to create it as a control - one panel
containing two other panels separated by a splitter. Nesting this controls
one can get any configuration one wants.
Whether using this control or the splitter control itself is up to you. If
you do complex splitting you'll end up creating split containers by
yourself, so why don't just use already created one; for simple splitting
you can save 3 panels if you use the simple Splitter control.

Signature
HTH
Stoitcho Goutsev (100)
> Two questions. First, what does MS recommend / offer for creating those
> nifty slide-out dialogues (?) that Visual Studio has? Yes I'm talking
[quoted text clipped - 10 lines]
> SplitContainer
> and a Splitter? Why choose one over the other?
George Shubin - 23 Feb 2006 16:24 GMT
Here's a free third-party control that gives you the slide-outs as well as
tabbed-MDI forms:
http://sourceforge.net/projects/dockpanelsuite/
Be sure to also download the VB Cookbook document in the Files section.
That will get you up and running rather quickly.

Signature
------------------------------------------------------------------------
George Shubin Custom Software Development
dX Software Systems Database Applications
Ph: 503-981-6806 Fax: 503-982-0120
www.dxonline.com george@dxonline.com
------------------------------------------------------------------------
"There is no more persistent and influential faith in the world today than
the faith in government spending." -- Henry Hazlitt
> Two questions. First, what does MS recommend / offer for creating those
> nifty slide-out dialogues (?) that Visual Studio has? Yes I'm talking
[quoted text clipped - 10 lines]
> SplitContainer
> and a Splitter? Why choose one over the other?