student.dpr

来自「学生档案管理系统 初始登录用户名:admin密码:admin」· DPR 代码 · 共 34 行

DPR
34
字号
program student;

uses
  Forms,
  main in 'main.pas' {MainForm},
  checkuser in 'checkuser.pas' {CheckUserForm},
  userlist in 'userlist.pas' {UserListForm},
  password in 'password.pas' {PasswordForm},
  speciality in 'speciality.pas' {SpecialityForm},
  course in 'course.pas' {CourseForm},
  studentinfo in 'studentinfo.pas' {StudentInfoForm},
  score in 'score.pas' {ScoreForm},
  scoreseek in 'scoreseek.pas' {ScoreSeekForm},
  courseseek in 'courseseek.pas' {CourseSeekForm},
  StudentSeek in 'StudentSeek.pas' {StudentSeekForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TMainForm, MainForm);
  Application.CreateForm(TCheckUserForm, CheckUserForm);
  Application.CreateForm(TUserListForm, UserListForm);
  Application.CreateForm(TPasswordForm, PasswordForm);
  Application.CreateForm(TSpecialityForm, SpecialityForm);
  Application.CreateForm(TCourseForm, CourseForm);
  Application.CreateForm(TStudentInfoForm, StudentInfoForm);
  Application.CreateForm(TScoreForm, ScoreForm);
  Application.CreateForm(TScoreSeekForm, ScoreSeekForm);
  Application.CreateForm(TCourseSeekForm, CourseSeekForm);
  Application.CreateForm(TStudentSeekForm, StudentSeekForm);
  Application.Run;
end.

⌨️ 快捷键说明

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