|
-
January 26th, 2000, 11:00 PM
#1
RichTextBox
How can I put the curser at the end of the text after I refresh the RichTextBox everytime?
Thanks
-
January 27th, 2000, 06:40 AM
#2
Re: RichTextBox
Hi ..After having the text in RTB u use the code below I have written for Command1_click..
Private Sub Command1_Click()
RichTextBox1.SelStart = Len(RichTextBox1.Text)
RichTextBox1.SetFocus
End Sub
Private Sub Form_Load()
RichTextBox1.Text = "fkj hr hrejreh tre.t erthejt hrej ehyjeherjyhjyyhj yhtj7rt"
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|