7-1-2 Test Printing
The following code is an example of the printing of Arial Test via the Windows font, and
FontA1x1Test via the printer font.
‘Print in Windows font
Printer.FontSize = 9
Printer.FontName = “Arial”
Printer.Print “Arial Test”
‘Print in printer font
Printer.FontSize = 8.5
Printer.FontName = “FontA1x1”
Printer.Print “FontA1x1Test”
Printer.EndDoc
7-1-3 Barcode Printing
The following code is an example of the printing of the JAN8 (EAN) barcode.
'Print Bar Code.
Printer.FontSize = 18
Printer.FontName = "JAN8 (EAN)"
Printer.Print "1234567"
Printer.EndDoc
7-1-4 Two-Dimensional Barcode Printing
The following code is an example of the printing of the PDF417 two-dimensional barcode.
'Print Two-dimensional Codes.
Printer.FontSize = 8.5
Printer.FontName = "PDF417"
Printer.Print "Print Test PDF417"
Printer.EndDoc