[EMAIL PROTECTED] wrote:
> I want to insert a text from a ListBox to a Memo. I've already got how
> to get the information form the Listbox... Now I want to insert that
> information where the memo's cursor is... I´ve tried to use the
> following thing to know where the cursor is:
> 

Just do
Memo1.SelLength := 0;  // not really needed
Memo1.SelText := ListBox.Text;

Andrew

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to