Subj : Sending catenated cstring strings to the printer To : borland.public.cpp.borlandcpp From : "George Tamero" Date : Sat Feb 28 2004 06:45 pm Dear Help; For DOS apps I use the following code to send catenated CHAR ARRAYS to the printer... char Text1[30]="My "; char Text2[30]="Cool "; char Text3[30]="Text "; char Text4[30]="read like this...\n"; char mca[300]=""; strcpy(mca, Text1); strcat(mca, Text2); strcat(mca, Text3); strcat(mca, Text4); cout<