Can't set size of label

C

cj

As I begin to do more and more with programs built from scratch in 2005
instead of those converted from 2003, I'm finding differences that are
confusing. Why can't I set the size of a label in 2005? I put it on
the form and try to set it's size to 72,16. It jumps right back to
39,13. In programs converted to 2005 from 2003 I don't have this
problem. What's up?

I am trying to build a form that looks like one in a 2003 program so I'm
adding the controls to the 2005 form and setting their position and size
to the values the controls have in the 2003 program I'm copying the look of.
 
T

Tim Patrick

Make sure the AutoSize property for the label is set to False. Then you can
resize it as needed.
 
J

Jeffrey Tan[MSFT]

Hi Cj,

Happy New Year!

Yes, just as Tim pointed out, .Net2.0 introduced the AutoSize property for
all controls, which basically lets you tell the control that it should
resize to properly contain its contents - so Buttons and Labels will expand
if the text within them expands, Forms will grow larger if controls within
it grow, etc. This feature is asked by many developers in .Net1.1 world, so
the .Net winform team finally added them in .Net2.0.

.Net2.0 also introduced "auto-relocation" feature together with "AutoSize";
it is controlled by the AutoRelocate property, also on virtually all
controls.

Below is the official link described the these 2 new features in .Net2.0:
"Improved Layout ":
http://www.windowsforms.net/WhidbeyFeatures/default.aspx?PageID=2&ItemID=17&
Cat=Runtime&tabindex=1

Hope it helps.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top