Hi, I need to output stuff to a printer and I need to do it in columns. I don't want to have to learn how to use reports, so at the moment I'm outputing via
PrnOut:TextFile;
AssignPrn(PrnOut);
Rewrite(PrnOut);
Writeln(PrnOut, {string});
I want to send things in columns, so I basically need to send tab characters and I have no idea what the char code for them is. Will this even work, does this method do anything with tabs or will I have to send individual spaces? If I have to send spaces, does anyone know how to set the printer to use a monospaced font with this method?
Thanks
PrnOut:TextFile;
AssignPrn(PrnOut);
Rewrite(PrnOut);
Writeln(PrnOut, {string});
I want to send things in columns, so I basically need to send tab characters and I have no idea what the char code for them is. Will this even work, does this method do anything with tabs or will I have to send individual spaces? If I have to send spaces, does anyone know how to set the printer to use a monospaced font with this method?
Thanks