📄 cxsys.dpr
字号:
program cxsys;
uses
Forms,
SysUtils,
frmmain in 'frmmain.pas' {main},
frmdataresult in 'frmdataresult.pas' {dataresult},
frmabout in 'frmabout.pas' {AboutBox},
frmchartexp in 'frmchartexp.pas' {chartexp},
frmexpressions in 'frmexpressions.pas' {expressions},
frmregsoft in 'frmregsoft.pas' {regsoft},
frmstart in 'frmstart.pas' {start};
{$R *.res}
var time1:TDateTime;
begin
Application.Initialize;
start:=Tstart.Create(Application);
start.Show;
start.Refresh;
time1:=now;
repeat;
until time1+StrtoTime('00:00:02')<=now;
Application.Title := '数字测斜仪器数据分析系统';
Application.CreateForm(Tmain, main);
Application.CreateForm(Tdataresult, dataresult);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(Tchartexp, chartexp);
Application.CreateForm(Texpressions, expressions);
Application.CreateForm(Tregsoft, regsoft);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -