If you try to copy a file to the printer using FileCopy, it does not like lpt1: saying that it is an invalid filename. To get around this just do the following:
Open "LPT1" For Output As #1
Print #1, VarString;
OR
Open "LPT1" For Binary As #1
Put #1,, VarString
|