faqts : Computers : Programming : Languages : Visual basic

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

19 of 22 people (86%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

A disabled multilined textbox can't be scrolled by users. How can I make it readonly and scrollable?

Jan 15th, 2002 12:54
Nathan Clute, Jim Skipper,


Another solution is to set the textbox's Locked property to True. A 
locked textbox cannot be edited, but can still be scrolled and read bu 
a user.

Also you could just create it inside a division.
using... <div style="width:400; height:300; overflow-x:hidden; overflow-
y:scroll; cursor:hand"> Your text here.</div>