> What is the correct way to concatinate more then 255 chars ( aloop that
> keeps adding chars ...) and then copy them onto the clipboard?
Since you mention LString, I assume you are using PowerPlant. Note the
newsgroup devoted to PowerPlant.
You can't use an LString, but you can use a standard string:
#include <string>
#include <UScrap.h>
std::string myString("some initial text");
myString += " more text";
myString += " and even more text";
UScrap::SetData('TEXT', &myString[0], myString.size());