Delphi 设置打印纸张大小,手动设置打印纸的长度和宽度,自定义纸张。相关代码:   procedure TForm1.SetPaperSize(cx, cy: Integer);   var    a,b,c: array[0..255]of char;    bb: Cardinal;    ee: PDEVMODE;   begin    printer.PrinterIndex := printer.PrinterIndex;    printer.GetPrinter(a,b,c,bb);    ee:= GlobalLock(bb);    ee^.dmPaperSize := DMPAPER_USER;    ee^.dmPaperLength := cy*10;    ee^.dmPaperWidth := cx*10;    ee^.dmFields :=ee^.dmFields or DM_PAPERSIZE or    DM_PAPERWIDTH or    DM_PAPERLENGTH;    ee^.dmFields := ee^.dmFields or DMBIN_MANUAL;    ee^.dmDefaultSource :=DMBIN_MANUAL;    GlobalUnlock(bb);    printer.PrinterIndex := printer.PrinterIndex;   end;
2023-04-15 12:12:10 59KB Delphi源码-报表打印
1
Delphi 7.0常用函数速查手册Delphi 7.0常用函数速查手册Delphi 7.0常用函数速查手册Delphi 7.0常用函数速查手册Delphi 7.0常用函数速查手册Delphi 7.0常用函数速查手册
2023-04-15 11:30:16 23KB Delphi 7.0常用函数速查手册
1
Delphi教程(清华版),使用简单,适合初学者,简单上手
2023-04-15 11:29:29 1.36MB Delphi
1
delphi教程,内容很全面的教程,学习它需要花时间和精力,初学者学习它最好多问问身边的高手,里面的内容非常精细
2023-04-15 11:27:52 7.19MB delphi 教程
1
delphi第三方控件的安装与删除详解 包含自定义控件的安装与删除
2023-04-14 22:27:11 37KB delphi控件 安装 删除
1
delphi2007之前支持PNG格式图片
2023-04-14 14:47:26 285KB DELPHI TImage TPNGImage
1
Delphi调用明华RD系列读卡器开发范例,包含10种IC卡类型的开发例子。
2023-04-14 13:46:39 473KB delphi RD系列,明华,开发范例
1
Delphi远控源码,是在04年发布的,不过源码实现的功能太强大了,只是TServerSocker控件就实现了强大的功能。
2023-04-14 05:39:07 1.32MB Delphi远控源码
1
初学者有时候对于控件的安装会触手无策,特别是比较新的Delphi10.3.1资料较少,自定义控件安装教程(图文)可以一步一步的教你整个安装过程。
2023-04-13 21:55:32 393KB delphi 自定义控件 安装教程
1
RadStudioKeygen10_2_3.zip
2023-04-13 15:23:02 983KB Delphi
1