|
-
Jun 29th, 2005, 09:43 PM
#1
Thread Starter
New Member
How to detect cursor location and insert text???
If I have a rich text box on a form, that is filled with say 30 lines of text the user has inserted. Is there a way I can detect where the cursor is in that text and insert some pre-defined text at its location on a button click? For example:
"This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box.<!!!!the cursor is here!!!> This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box. This is some text in a rich text box."
How can I detect where the cursor is and insert some text at its location? Thanks.
-
Jun 29th, 2005, 10:13 PM
#2
Re: How to detect cursor location and insert text???
richTextBox.SelStart < - that's the cursor's current spot
righTextBox.SelText = "Insert New Text" < - this inserts text at the richTextBox.SelStart location.
Tg
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
|