VB.NET form Height Question - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:13:09Zhttp://stackoverflow.com/feeds/question/35848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35848/vb-net-form-height-question2VB.NET form Height QuestionKrantz2008-08-30T10:01:31Z2008-09-30T19:05:41Z
<p>I have a VB6.0 project and I want to convert it in VB.Net.</p>
<p>In my VB6.0 application some of the MDI Child form’s height is 17000 and width is 13000. Now I want to set the same form size in VB.Net forms, but it allows maximum form width = 1036, height = 780 for resolution 1024x768.</p>
<p>How can I increase form size with same resolution?</p>
<p>Also I want to print this from so, I can not use auto scroll property of vb.net forms.</p>
<p>Thaks</p>
http://stackoverflow.com/questions/35848/vb-net-form-height-question/35852#358520Answer by John for VB.NET form Height QuestionJohn2008-08-30T10:03:46Z2008-08-30T10:03:46Z<p>I think the VB6 units are not the same with the VB.Net one. So you have to do a conversion.</p>
http://stackoverflow.com/questions/35848/vb-net-form-height-question/36103#361032Answer by Matt Dawdy for VB.NET form Height QuestionMatt Dawdy2008-08-30T16:38:09Z2008-08-30T16:38:09Z<p>Your classic VB units are in what are called "twips". You will most likely be able to divide those numbers by 12 or 15 (depending on if you are using large or small fonts) and you will get a certain number of pixels.</p>
http://stackoverflow.com/questions/35848/vb-net-form-height-question/36110#361100Answer by Rob Cooper for VB.NET form Height QuestionRob Cooper2008-08-30T16:39:56Z2008-08-30T16:39:56Z<p>Hi, I done some Googling on this, and came across <a href="http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework.windowsforms/topic17193.aspx" rel="nofollow">this</a>..</p>
<blockquote>
<p>Yes, this size of the form is limited
to the size of the desktop (more
specifcally
SystemInformation.MaxWindowTrackSize).
This is done in the Form.SetBoundsCore
protected virtual method. This
behaviour cannot be changes or at
least without a great deal of work and
using PInvoke.</p>
</blockquote>
<p>Also supported <a href="http://www.themssforum.com/VB/Maximum-Form/" rel="nofollow">here</a></p>
<blockquote>
<p>The size of the form in the designer
is limited by your screen size.</p>
<p>It sounds like you have your display
at 1600x1200, hence the designer won't
let you go larger then 1212.</p>
<p>If you had your display at 1280x1024,
then the designer wouldn't let you go
larger then 1036.</p>
<p>I'm not really sure why the size of
the form in the designer is limited to
the screen size, as I may deploy on a
machine that has a larger screen size
them my development machine...</p>
</blockquote>
<p>So looks like it cannot be done.. Thats some strange behaviour since it looks like you are limited to whatever your dev machine is..</p>
<p>I think the only way to do it is to size to the maximum resolution possible, set the form size, then revert back, but never touch the size again.</p>
http://stackoverflow.com/questions/35848/vb-net-form-height-question/154479#1544791Answer by Eduardo Molteni for VB.NET form Height QuestionEduardo Molteni2008-09-30T19:05:41Z2008-09-30T19:05:41Z<p>You are limited in the designer, but not in code:</p>
<pre><code>Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Height = 17000 'or whatever you need
Me.Width = 13000
End Sub
</code></pre>