|
-
Sep 30th, 2005, 06:53 PM
#1
Thread Starter
New Member
[RESOLVED] Cursor question?
I need to place my text curosor (the little "|" that flashes) to a certain point in the text in my rich text box, basically I want to make it go to the very end of all the text, spaces, etc. (len(main.text)) but how would I move the cursor thing accordingly?
-
Sep 30th, 2005, 06:56 PM
#2
Re: Cursor question?
Use the SelStart property of the rtb.
VB Code:
rtb.SelStart = len(rtb.text)
-
Sep 30th, 2005, 06:59 PM
#3
Thread Starter
New Member
Re: Cursor question?
 Originally Posted by dglienna
Use the SelStart property of the rtb.
VB Code:
rtb.SelStart = len(rtb.text)
Thanks alot...works now!
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
|