Printer 中的 Copies 问题 (100分)

  • 主题发起人 主题发起人 hblsoft
  • 开始时间 开始时间
H

hblsoft

Unregistered / Unconfirmed
GUEST, unregistred user!
我写的一个程序代码如下:PrintDialog1.Copies := StrToInt(Edit1.text);
在操作系统Win98中不起作用而在操作系统Win2000中使用正常。
请教各位高人指点,谢谢,Good Luck!
E_mail :HBLSoft@163.com HBLSoft@sina.com[red][/red]
 
试一下
Printer.Copyies := StrToInt(Edit1.text);
 
我在Windows 2000中也没有起过作用。
我的方法是:
printer.begin
doc;
for i:=0 to icount-1do
begin
//icount要打印的份数
......//打印你的任务。
printer.newpage;
//新启一页,继续打印。
end;
printer.enddoc;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部