📄 sendfax.dpr
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -