📄 rungate.dpr
字号:
program RunGate;
uses
Forms,
Main in 'Main.pas' {FrmMain},
GateShare in 'GateShare.pas',
GeneralConfig in 'GeneralConfig.pas' {frmGeneralConfig},
MessageFilterConfig in 'MessageFilterConfig.pas' {frmMessageFilterConfig},
IPaddrFilter in 'IPaddrFilter.pas' {frmIPaddrFilter},
Grobal2 in '..\Common\Grobal2.pas',
HUtil32 in '..\Common\HUtil32.pas',
PrefConfig in 'PrefConfig.pas' {frmPrefConfig},
SDK in '..\SDK\SDK.pas',
EDCode in '..\Common\EDCode.pas';
{$R *.res}
begin
Application.Initialize;
Application.HintHidePause:=10000;
Application.HintPause:=100;
Application.CreateForm(TFrmMain, FrmMain);
Application.CreateForm(TfrmGeneralConfig, frmGeneralConfig);
Application.CreateForm(TfrmMessageFilterConfig, frmMessageFilterConfig);
Application.CreateForm(TfrmIPaddrFilter, frmIPaddrFilter);
Application.CreateForm(TfrmPrefConfig, frmPrefConfig);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -