eis.dpr

来自「《delphi数据库开发实例》书籍源码」· DPR 代码 · 共 25 行

DPR
25
字号
program eis;

uses
  Forms,
  MainForm in 'MainForm.pas' {main},
  ParentForm in 'ParentForm.pas' {Parent},
  ClassInfoForm in 'ClassInfoForm.pas' {ClassInfo},
  CourseInfoForm in 'CourseInfoForm.pas' {CourseInfo},
  CourseElectForm in 'CourseElectForm.pas' {CourseElect},
  ScheduleForm in 'ScheduleForm.pas' {Schedule},
  ScoreForm in 'ScoreForm.pas' {Score},
  ReportForm in 'ReportForm.pas' {report},
  PrintScoreForm in 'PrintScoreForm.pas' {PrintScore},
  StudentInfoForm in 'StudentInfoForm.pas' {StudentInfo};

{$R *.res}

begin
  Application.Initialize;
  Application.Title := '教务管理系统';
  Application.CreateForm(Tmain, main);
  Application.CreateForm(Treport, report);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?