Author: Tomas Rutkauskas
How to overcome a printing glitch in the EPSON 600 series driver
Answer:
The drivers for the Epson 600-series seem to have a weird problem. If the
Printer.Title property is empty (by default) the printer won't do anything. You
can't get a single line of text out of the printer. So, to be sure your application
prints, put the line:
1 { ...}2 Printer.Title := 'Some Text';
3 { ...}
just before you call Printer.BeginDoc. You can replace the TitleString by any, non-empty, string you like.