Re: [perl-win32-gui-users] Question about AddTextbox.

2003-10-07 Thread Sean Healy
Sorry about that last message; I must have accidentally hit a wrong key Is there any easy way to append to an "AddRichEdit" text field? I would like it to just add to the text field without replacing it. $myRichEdit->Select(-1,-1); # position cursor at end $myRichEdit->ReplaceSel($text_to_a

Re: [perl-win32-gui-users] Question about AddTextbox.

2003-10-07 Thread Sean Healy
Is there any easy way to append to an "AddRichEdit" text field? I would like it to just add to the text field without replacing it. $myRichEdit->Select(-1,-1); I found a work around which was to concatenate strings together and feed it to the AddRichEdit->Text but I am not sure this will wo

[perl-win32-gui-users] Question about AddTextbox.

2003-10-07 Thread Don Grey
Is there any easy way to append to an "AddRichEdit" text field? I would like it to just add to the text field without replacing it. I found a work around which was to concatenate strings together and feed it to the AddRichEdit->Text but I am not sure this will work on large amounts of text.