-
Delphi 设置打印纸大小
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-01-17 00:20:03下载
- 积分:1
-
arma_analyse-and-forecast
1、时间序列的ARMA(自回归移动平均)算法代码实现;
2、能用于平稳时序的分析和预测;
3、使用C/C++开发。(1、The codes relization of timeseries arma forecast method
2、Be used in analyzing and forecast in timeseries
3、Be developed by C/C++ tool.)
- 2021-04-29 11:08:43下载
- 积分:1
-
DesigningForBoardLevelElectromagneticCompatibility
《电路板级电磁兼容设计》网上很流行的一个文档,为摩托罗拉/飞思卡尔撰写,我收集了中英文两个版本,供对照着看。应该有独特的帮助()
- 2008-06-01 13:18:49下载
- 积分:1
-
可通过正则表达式进行无限级别的批量文本内容替换
可通过正则表达式进行无限级别的批量文本内容替换-Regular expressions can be an unlimited-level text batch replace
- 2023-07-07 10:10:03下载
- 积分:1
-
自己写的贪吃蛇小游戏C代码供学习
资源描述自己运行,编译,通过,代码简单,可读性良好,内置C程序,可以供刚开始学编程的同学学习练习,也可自行对算法进行修改。
- 2022-02-10 01:24:50下载
- 积分:1
-
car4Ssale
用c++做的汽车4s店销售系统(mfc)
录入查询库存预定等功能模块
头文件中定义 class CAutomobile4SshopDlg : public CDialog
头文件中定义class sale : public CDialog
class service : public CDialog
class storage : public CDialog
class guanli : public CDialog
分别作销售,服务,库存,管理功能模块函数体调用
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_AUTOMOBILE4SSHOP_DIALOG 102
.....宏定义为函数体调用(Using c++ to do car 4s shop sales system (mfc)
Input query inventory reserve and other functional modules
Header file defines class CAutomobile4SshopDlg: public CDialog
Header file defines class sale: public CDialog
class service: public CDialog
class storage: public CDialog
class guanli: public CDialog
Respectively, for sales, service, inventory management function module calls the function body
# define IDM_ABOUTBOX 0x0010
# define IDD_ABOUTBOX 100
# define IDS_ABOUTBOX 101
# define IDD_AUTOMOBILE4SSHOP_DIALOG 102
Defined as a function of the body ..... macro call)
- 2013-10-24 17:52:29下载
- 积分:1
-
原型模式简历04
kongzhitai timer c# visual studio
- 2020-06-24 12:40:02下载
- 积分:1
-
jquery实现图片放大缩小功能
鼠标移动到图片上,图片自动缩到左上角,右下角出现文字说明,鼠标移走后图片恢复(Mouse moves to the picture, the picture automatically shrinks to the upper left corner, text description appears in the lower right corner, picture recovery after the mouse moves away)
- 2018-11-10 15:14:48下载
- 积分:1
-
sts-2.1.2
NIST随机序列检测的源代码,可以直接在Liunx环境下运行,Widows下运行需要暗转cygwin(Source code for NIST random sequence detection)
- 2018-04-19 14:31:20下载
- 积分:1
-
BPSK_Costas
使用科斯塔环的方法实现基于BPSK调制的载波恢复跟踪(Using Costas loop method to recovery and track carrier frequency of BPSK modulation signal)
- 2017-12-07 11:13:31下载
- 积分:1