Epson TM-U325D 사용자 설명서

다운로드
페이지 45
 
 
TITLE 
TM Printer Driver 
 SHEET 
 REVISION
 
 NO
 
 
User's Manual 
1.61 
 NEXT 
39
 
 SHEET 
38
 
 
EPSON
 
6.2. Controlling the Printer from Visual Basic (Ver. 4.0) 
This section shows how you can control the TM printer using Visual Basic (version 4.0). Note that the TM printer drivers 
include sample Visual Basic programs that provide additional examples. 
 
6.2.1. Selecting the Printer Driver 
The following code establishes the specified printer driver as your "default printer." 
 
 
 
 
 
 
 
 
 
 
6.2.2. Selecting the Paper Source 
Use the following code to set or change the paper source when printing out text. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
'
Set the specified printer driver as the "default printer."
For E ach prnPrinter In Printers
If prnPrinter.D eviceN am e = “E PSO N  TM -300A  N o cut” Then
Set Printer = prnPrinter
E xit For
E nd If
N ext
'
Selecting the paper source.
Printer.FontSize = 10
'
Set up the control font.
Printer.FontN am e = "control"
'
Printer.Print “3”
'
E nter the special-function
corresponding to the desired
source.
'
 1: Journal
 
'
 2: R eceipt
'
 3: B oth
'
E nter and print text.
Printer.FontSize = 10
'
Select the text font size.
Printer.FontN am e = "20 cpi"
'
Select the text font.
Printer.Print “test print”
'
E nter and print the text string.