SPP-R300
Rev. 1.02
- 37 -
7. Use of Windows Driver
7-1 Use of Visual Basic
This section contains example codes to control the printer (BIXOLON SPP-R300) using
Windows driver with Visual Basic. Sample codes contained in the CD.
7-1-1 Windows Driver Selection
The following code is an example of the selection of the “BIXOLON SPP-R300” Windows
Driver.
For Each prnPrinter In Printers
If prnPrinter.DeviceName = “BIXOLON SPP-R300” Then
Set Printer = prnPrinter
Exit For
End If
Next