What do i need to do too add something similar like the Favorites in Internet Explorer?
With the same kind of functionality with a Button to Open and Close it.. :thumb:
Printable View
What do i need to do too add something similar like the Favorites in Internet Explorer?
With the same kind of functionality with a Button to Open and Close it.. :thumb:
Didn't we already have this conversation? If you're using .NET 1.1 then you use a Splitter control. You would dock your collapsible Panel to the left of the form, then add a Splitter to the form. You can then set the SplitPosition property to zero to hide the Panel on the left. make sure you set MinSize to zero if you want to be able to hide it altogether. If you're using .NET 2.0 then you'd use a SplitContainer, which is a bit different.
yeah i am using .NET 2.0 but i'll take a look at it....I figured it would be a bit different...Going to keep this one open since i'm using the .NET 2.0
Similar. Add a SplitContainer, add the controls you want to each panel, set the Panel1MinSize to zero and set Panel1Collapsed to True or False as you like.
Thxs Got it...