View Single Post
  #3 (permalink)  
Old 07-22-2009, 2:11 AM
jmcilhinney's Avatar
jmcilhinney jmcilhinney is offline
VB.NET Forum Moderator
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Aug 2004
Location: Sydney, Australia
Age: 40
Posts: 6,106
Reputation: 541
jmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalistjmcilhinney VB.NET gold medalist
Default

A Label control doesn't show sizing handles because its Size is determined by the Text it contains. To change that you must set the AutoSize property to False and then it will provide sizing handles just like a Button.

The TextBox provides sizing handles on the left and right sides but not on the corners or the top and bottom because the Height of a TextBox is determined by its Font. To change that you must set the Multiline property to True, although that will also allow the user to enter multiple lines.
Reply With Quote