You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
legado/tool/书源整理工具/BookSourceMgr.dpr

22 lines
564 B

program BookSourceMgr;
uses
Forms,
uFrmMain in 'uFrmMain.pas' {Form1},
Themes,
Styles,
uFrmWait in 'uFrmWait.pas' {Form2},
uBookSourceBean in 'uBookSourceBean.pas',
uFrmEditSource in 'uFrmEditSource.pas' {frmEditSource},
uFrmReplaceGroup in 'uFrmReplaceGroup.pas' {frmReplaceGroup},
uBookSourceBean20 in 'uBookSourceBean20.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'ÔĶÁÊéÔ´¹ÜÀí¹¤¾ß';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.