?? college.~dpr
字號:
program college;
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\system.drawing.dll'}
uses
Forms,
main in 'main.pas' {mainform},
login in 'other\login.pas' {F_login},
teacher in 'teacher\teacher.pas' {F_teacher},
student in 'student\student.pas' {F_student},
welcomu in 'other\welcomu.pas' {welcome},
classu in 'student\classu.pas' {F_class},
course in 'course\course.pas' {F_course},
pwd in 'system\pwd.pas' {F_pwd},
term in 'system\term.pas' {f_term},
courseselect in 'course\courseselect.pas' {f_courseselect},
score in 'course\score.pas' {f_score},
dlgaddstu in 'student\dlgaddstu.pas' {dlg_addstu},
backup in 'system\backup.pas' {F_bk};
{$R *.res}
begin
vlogin:='';
vloginname:='';
vloginstatus:='';
Application.Initialize;
Application.Title := '學(xué)校網(wǎng)絡(luò)信息查詢系統(tǒng)';
Application.CreateForm(Tmainform, mainform);
Application.CreateForm(TF_login, F_login);
Application.CreateForm(Twelcome, welcome);
Application.CreateForm(TF_pwd, F_pwd);
Application.CreateForm(Tf_term, f_term);
Application.CreateForm(Tdlg_addstu, dlg_addstu);
Application.CreateForm(TF_bk, F_bk);
Application.Run;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -