Click here to Skip to main content
16,017,151 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi Can someone pls help me pls?

Im trying to create a web browser in vb 2005 with DOWNLOAD MANAGER, but i need to display my download manager in the LEFT SIDE of my own browser, so how to do that?? thanks in advance! :)



HOPING FOR YOUR ANSWERS THANKS!
Posted
Updated 24-Jul-11 7:30am
v2

try to study this another topic

http://www.dreamincode.net/forums/topic/121539-using-own-download-manager-instead-of-ie-download-dialog/
 
Share this answer
 
Insert two panels in the main form (or two some parent panel); make the property Dock of the left panel to be DockStyle.Left, for other panel, use DockStyle.Fill. If required, add a splitter between the two. Add you other controls to those panels; also use DockStyle.Fill if the child control is only one. Also add appropriate Padding to the panels.

See:
http://msdn.microsoft.com/en-us/library/system.windows.forms.control%28v=VS.80%29.aspx[^],
http://msdn.microsoft.com/en-us/library/system.windows.forms.splitter%28v=VS.100%29.aspx[^] (sorry, I did not find the version of this page for v.2.0, but such control does exist; use the help of your version of Visual Studio).

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900