Originally posted by Xcoder
Hello all,

What Im trying to find out is if using SendMessage is faster than using this with a RichTextBox:
Code:
RichText1.SelStart = Len(RichText1.Text)
RichText1.SelText = mystring
If so, I will appreciate if you could point me to the right Consts and maybe an insight of what to do. Thanks a lot.
Have you figured it out yet or still trying? B/C now im kinda courious myself, so I may give it a try. From jstu looking at it, I think that send message would give the command slower, since all the messages are handled, compared to using a function directly.