sendfax.dpr
来自「使用Modem发送传真」· DPR 代码 · 共 26 行
DPR
26 行
program SendFax;
uses
Forms,
SENDFAX0 in 'SENDFAX0.PAS' {sfMain},
SENDFAX1 in 'SENDFAX1.PAS' {sfFaxList};
{$IFDEF WhenPigsFly -- this prevents the IDE's scanner from adding a *.RES}
{.{$R *.RES}
{$ENDIF}
{$IFDEF Win32}
{$R EXICON.R32}
{$ELSE}
{$R EXICON.R16}
{$ENDIF}
begin
{$IFDEF Win32}
Application.Initialize;
{$ENDIF}
Application.CreateForm(TsfMain, sfMain);
Application.CreateForm(TsfFaxList, sfFaxList);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?