stuproject.dpr

来自「学生选修课管理,学籍管理,修改信息管理,登陆退出系统管理等」· DPR 代码 · 共 34 行

DPR
34
字号
program stuProject;

uses
  Forms,
  MAIN in 'MAIN.pas' {frmmain},
  change in 'change.pas' {frmchange},
  studclass in 'studclass.pas' {frmclass},
  usermanage in 'usermanage.pas' {frmadmain},
  department in 'department.pas' {frmdepartment},
  punish in 'punish.pas' {frmpunish},
  studentquery in 'studentquery.pas' {frmstudentquery},
  reward in 'reward.pas' {frmreward},
  student in 'student.pas' {frmstudent},
  user in 'user.pas' {frmuser},
  userlogin in 'userlogin.pas' {frmlogin};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tfrmmain, frmmain);
  Application.CreateForm(Tfrmchange, frmchange);
  Application.CreateForm(Tfrmclass, frmclass);
  Application.CreateForm(Tfrmadmain, frmadmain);
  Application.CreateForm(Tfrmdepartment, frmdepartment);
  Application.CreateForm(Tfrmpunish, frmpunish);
  Application.CreateForm(Tfrmstudentquery, frmstudentquery);
  Application.CreateForm(Tfrmreward, frmreward);
  Application.CreateForm(Tfrmstudent, frmstudent);
  Application.CreateForm(Tfrmuser, frmuser);
  Application.CreateForm(Tfrmlogin, frmlogin);
  Application.Run;
end.

⌨️ 快捷键说明

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