?? 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 + -