📄 libraryproject.dpr
字号:
program LibraryProject;
uses
Forms,
COMMON in 'COMMON.pas',
Db_Con in 'Db_Con.pas' {Db_Connect: TDataModule},
Login in 'Login.pas' {frmLogin},
Main in 'Main.pas' {frmMain},
reader in 'reader.pas' {AddReader},
Unit1 in 'Unit1.pas' {findreader},
Unit2 in 'Unit2.pas' {AddReaderType},
Unit3 in 'Unit3.pas' {findreadertype},
Unit4 in 'Unit4.pas' {deletereader},
Unit5 in 'Unit5.pas' {deletereadertype},
Unit6 in 'Unit6.pas' {operatesuccessmessage},
Unit7 in 'Unit7.pas' {connectreader},
Unit8 in 'Unit8.pas' {Form8},
Unit9 in 'Unit9.pas' {Form9},
readerpercent in 'readerpercent.pas' {Form10},
locatereader in 'locatereader.pas' {frmlocatereader},
copy in 'copy.pas' {readercopy},
Unit11 in 'Unit11.pas' {Form11},
Unit12 in 'Unit12.pas' {frmExportReaderinfo},
Unit13 in 'Unit13.pas' {frmBorrowAnalysis},
Unit14 in 'Unit14.pas' {frmScore},
Unit15 in 'Unit15.pas' {frmHeiMDan},
USaveToExcel in 'USaveToExcel.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TDb_Connect, Db_Connect);
Application.CreateForm(TfrmLogin, frmLogin);
Application.CreateForm(TAddReader, AddReader);
Application.CreateForm(Tfindreader, findreader);
Application.CreateForm(TAddReaderType, AddReaderType);
Application.CreateForm(Tfindreadertype, findreadertype);
Application.CreateForm(Tdeletereader, deletereader);
Application.CreateForm(Tdeletereadertype, deletereadertype);
Application.CreateForm(Toperatesuccessmessage, operatesuccessmessage);
Application.CreateForm(Tconnectreader, connectreader);
Application.CreateForm(TForm8, Form8);
Application.CreateForm(TForm9, Form9);
Application.CreateForm(TForm10, Form10);
Application.CreateForm(Tfrmlocatereader, frmlocatereader);
Application.CreateForm(Treadercopy, readercopy);
Application.CreateForm(TForm11, Form11);
Application.CreateForm(TfrmExportReaderinfo, frmExportReaderinfo);
Application.CreateForm(TfrmBorrowAnalysis, frmBorrowAnalysis);
Application.CreateForm(TfrmScore, frmScore);
Application.CreateForm(TfrmHeiMDan, frmHeiMDan);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -