by Melchoir (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Tue 26th December 2000
Date Added: Mon 8th February 2021
Rating:
(1 Votes)
This code will make it so the textbox your using in a chat program will keep the scrollbars down and make it so you can always see the latest
Text1.SelStart = len(Text1)
End Sub
'or for a mIRC kinda chat text you can do
Private Sub Timer1_Timer()
Text1.SelStart = len(Text1)
End Sub
'this will make it so that they cannot highlight and copy anything from the chat
No comments have been posted about This code will make it so the textbox your using in a chat program will keep the scrollbars down an. Why not be the first to post a comment about This code will make it so the textbox your using in a chat program will keep the scrollbars down an.