首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

关于用vb做票据套打的有关问题?

2012-01-26 
关于用vb做票据套打的问题??我想问下大家,在网上现在有免费使用的增值税发票套打的用vb做的软件吗??如果有

关于用vb做票据套打的问题??
我想问下大家,在网上现在有免费使用的增值税发票套打的用vb做的软件吗??
如果有~可以给个下载地址我吗?
要是没有~可以给个vb的实现票据套打的源码让我参考一下吗??

[解决办法]
参考以下的定位打印代码:
Option Explicit
Dim x As Integer
Dim y As Integer
Dim fnt As Byte
Dim txt As String
Dim dd As Variant

Public Function prnt(x As Variant, y As Variant, fnt As Variant, txt As Variant)
Printer.CurrentX = x
Printer.CurrentY = y
Printer.FontSize = fnt
Printer.Print txt
End Function

Private Sub Command1_Click() '打印字符串
Printer.FontSize = 36
Printer.Print "This is the first line of text in a pair. "
Printer.Print "This is the second line of text in a pair. "
Printer.EndDoc
End Sub


Private Sub Command3_Click() '打印文本内容
fnt = 16
x = 100
y = 100
txt = Text1
dd = prnt(x, y, fnt, txt)
Printer.EndDoc
End Sub

Private Sub Form_Load()
Text1 = "打印 "
End Sub

热点排行