Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vertical scroll property on textbox control

Status
Not open for further replies.

EricE

IS-IT--Management
Oct 6, 2000
17
US
Can anyone point me in the right direction on how I can make the text concatenated to the end of a textbox control appear in a textbox on screen?

In order words, I want to be "scrolled down" to the bottom of a textbox when something is added to the end rather than being returned to the top of the textbox scroll each time.

Can anyone help?

Thanks in advance!

Eric

Eric
 
Try this

Code:
Textbox1.AppendText("This text at the bottom")

This will add the text to the end of the existing text in the textbox, and move the view to the end.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top