Preventing wrapping in textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a textbox whose data is longer than the width of the control. The text
wraps to a second line. I'd rather have the data display (although partially)
in a single line that I can horizontally scroll. Is this possible?
 
Mnt,

I think that what you are asking for is in fact the default behaviour
for textboxes. The text only wraps to a second line if the height of
the textbox is expanded to allow more than one line to be seen, or if
the Scroll Bars property of the textbox is set to 'Vertical'. However,
you need to click to place the cursor within the textbox, and then use
the right and left arrow keys to scan.
 
Back
Top