|
-
Apr 24th, 2000, 01:59 PM
#1
Thread Starter
Addicted Member
Hi,
Where can i find or How can i use the "righttoleft" in the RichTextBox ? (in textbox the properties RightToLegt exist but in RichTextBox its go'n)
Thanks
-
Apr 24th, 2000, 07:04 PM
#2
Conquistador
This may not be what you are looking for but anyway...
Code:
rtf1.SelStart = 0 'Go to the start of the textbox
rtf1.SelLength = Len(rtf1.Text) 'Select everything
rtf1.SelAlignment = 1 'Put everything to the right
rtf1.SelStart = Len(rtf1.Text) 'Go to the end of the box
did this help?
-
Apr 24th, 2000, 08:52 PM
#3
Thread Starter
Addicted Member
David,
Thanks, its work fin.
Btw do u know how can i use 'rtfHighlight' for all the occurens that found? (i am searching for string in the richtextbox and i like to know how meny times the string found and highlight theme)
Thanks for the previous reply.
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
|