SRP-350II
Rev. 1.02
- 36 -
7. Use of Windows Driver
7-1 Use of Visual Basic
This section contains example codes to control the printer (BIXOLON SRP-350II) using
Windows driver with Visual Basic. Sample codes contained in the CD.
7-1-1 Windows Driver Selection
The following example code explains how to select “BIXOLON SRP-350II” Windows driver.
For Each prnPrinter In Printers
If prnPrinter.DeviceName = “BIXOLON SRP-350II” Then
Set Printer = prnPrinter
Exit For
End If
Next