- Home
·
- String Manipulation
·
- Make a text box automatically scroll down as it is changed or added to if the text is longer than o
Make a text box automatically scroll down as it is changed or added to if the text is longer than o
Make a text box automatically scroll down as it is changed or added to if the text is longer than one line... I don't know if this is already
Rate Make a text box automatically scroll down as it is changed or added to if the text is longer than o
(1(1 Vote))
'an example of a piece of a chat "send" button, not including the actual part for sending the text to the other user, adds the text to the text box, and sets the text starting point as the last character, requires txtChat as the chat where all messages are posted and txtType where the user types the messages
txtChat.Text = txtChat.Text & txtType.text & vbCrLf
txtChat.SelStart = Len(txtChat.Text)
End Sub
Make a text box automatically scroll down as it is changed or added to if the text is longer than o Comments
No comments yet — be the first to post one!
Post a Comment