- VJ
"Mikkel Faarup" <mikkel...@capgemini.dk> wrote in message
news:75f3945c.03082...@posting.google.com...
I want a small outer-window with the ability to browse/scroll a larger
form inside.
This inner document form is limited to around 1000px and therefor
requires its own scrollbar - resulting in 2 scrollbars...
The inner form is a tabbed page control.
Any ideas?
Br
Mikkel
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Although not recommended, I'd suggest you open up the Code view and look
under "InitializeComponent ()" method. Look for the tab page control (say,
tabControl1) and set its size manually - "this.tabControl1.Size = new Size
(400, 1000);"
This way, you work around designer's limitation.
If it's during run time, you can set the size in the constructor of the form
(after InitializeComponent ()) call.
"Mikkel Faarup" <mikkel...@capgemini.dk> wrote in message
news:75f3945c.03082...@posting.google.com...