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
Printable View
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
This may not be what you are looking for but anyway...
did this help?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
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.