📄 expertextract.~dpr
字号:
program ExpertExtract;
uses
Forms,
Controls,
Main in 'Main.pas' {frmMain},
Splash in 'Splash.pas' {frmSplash},
Login in 'Login.pas' {frmLogin},
Extract1 in 'Extract1.pas' {frmExtract1},
Extract1Rep in 'Extract1Rep.pas' {frmExtract1Rep},
ExpertUpdate in 'ExpertUpdate.pas' {frmExpertUpdate},
ExpertAdd in 'ExpertAdd.pas' {frmExpertAdd},
GroupAdd in 'GroupAdd.pas' {frmGroupAdd},
GroupUpdate in 'GroupUpdate.pas' {frmGroupUpdate},
ExtractResult in 'ExtractResult.pas' {frmExtractResult};
{$R *.res}
begin
Application.Initialize;
//创建splash窗体
frmSplash :=TfrmSplash.Create(Application);
//以模式对话框的方式显示splash窗体
frmSplash.ShowModal;
//如果定时时间到或单击了窗体上的图形
if frmSplash.ModalResult = mrOK then
begin
Application.Title := '专家抽取系统'; //设置应用程序的标题
Application.CreateForm(TfrmMain, frmMain);
frmSplash.Hide; //将启动封面窗体隐藏
frmSplash.free; //将启动封面窗体清除
Application.Run;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -