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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TextBox scrollbar

Status
Not open for further replies.

acjeff

Programmer
Aug 10, 2004
148
US
Folks,

In VB6, I use a textbox with multiline and vertical scrollbar to show a runtime process log. During the process or after it is done, the scrollbar's position stays at the top, that is, the text box shows the beginning of the log all the time.

How can I make it scroll down continuouly during the process and stays at the bottom showing the end of textbox?

Jeff
 
try something like...

textbox.selstart = len(textbox.text)



-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top