Windows Driver
Rev. 1.01
- 50 -
7. Windows Driver Application
7-1 Application with Visual Basic
This section contains example codes to control the printer (Metapace T-3II) using Windows
driver with Visual Basic.
Sample codes shown here are copied to the installation directory when installing the
Windows driver for your reference.
7-1-1 Windows driver selection
The following example code explains how to select the
“Metapace T-3II” Windows driver.
For Each prnPrinter In Printers
If prnPrinter.DeviceName = “Metapace T-3II” Then
Set Printer = prnPrinter
Exit For
End If
Next