i can't resize my textbox control vertically

Yeung

Member
Joined
Jun 15, 2007
Messages
22
Programming Experience
Beginner
or i can't resize the height of my textbox control ... do i really have to set it to multiline = true first?

i'm just new to vb.net and on this site.
 
or i can't resize the height of my textbox control ... do i really have to set it to multiline = true first?

.

Yep.. if you didnt, you'd have a textbox that took up 4 lines, but only ever the top line would show text.. :)
 
or you can leave the MultiLine property set to False and change the font to a larger font

the textbox's height is determined by the font unless multiline is set to True
 
Back
Top