Does anyone know how to get a c++ program to output to a usb printer or at the very least an acrobat distiller? I am trying to use the following:
ofstream print;
print.open("lpt1:", ios::out);
print<<"blah blah blah";
but I guess I have a usb printer and not a lpt1 printer. PLease help...I am going crazy here!!! :-)
MuthuIVS