?? car.dpr
字號:
program car;
uses
Forms,
login in 'login.pas' {form_login},
DM in 'DM.pas' {Form_dm},
md5 in 'md5.pas',
main in 'main.pas' {Form_main},
adduser in 'adduser.pas' {Form_adduser},
password in 'password.pas' {Form_password},
del_user in 'del_user.pas' {Form_deluser},
backup in 'backup.pas' {Form_backup},
recover in 'recover.pas' {Form_recover},
addcar in 'addcar.pas' {Form_addcar},
adddriver in 'adddriver.pas' {Form_adddriver},
updatecar in 'updatecar.pas' {Form_updatecar},
updatedriver in 'updatedriver.pas' {Form_updatedriver},
carout in 'carout.pas' {Form_carout},
addtype1 in 'addtype1.pas' {Form_addtype1},
addtype2 in 'addtype2.pas' {Form_addtype2},
addunit in 'addunit.pas' {Form_addunit},
addsigner in 'addsigner.pas' {Form_addsigner},
addbegin in 'addbegin.pas' {Form_addbegin},
addend in 'addend.pas' {Form_addend},
repair in 'repair.pas' {Form_repair},
addspot in 'addspot.pas' {Form_addspot},
additem in 'additem.pas' {Form_additem},
addoilspot in 'addoilspot.pas' {Form_addoilspot},
oil in 'oil.pas' {Form_oil},
addoiltype in 'addoiltype.pas' {Form_addoiltype},
updatecarout in 'updatecarout.pas' {Form_updatecarout},
updateoil in 'updateoil.pas' {Form_updateoil},
updaterepair in 'updaterepair.pas' {Form_updaterepair},
unitstat in 'unitstat.pas' {Form_unitstat},
driverstat in 'driverstat.pas' {Form_driverstat},
carstat in 'carstat.pas' {Form_carstat},
unitstatrep in 'unitstatrep.pas' {Form_unitstatrep},
carstatrep1 in 'carstatrep1.pas' {Form_carstatrep1},
carstatrep4 in 'carstatrep4.pas' {Form_carstatrep4},
carstatrep2 in 'carstatrep2.pas' {Form_carstatrep2},
carstatrep3 in 'carstatrep3.pas' {Form_carstatrep3},
driverstatrep1 in 'driverstatrep1.pas' {Form_driverstatrep1},
driverstatrep2 in 'driverstatrep2.pas' {Form_driverstatrep2},
setting in 'setting.pas' {Form_setting};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(Tform_login, form_login);
Application.CreateForm(TForm_dm, Form_dm);
Application.CreateForm(TForm_main, Form_main);
Application.CreateForm(TForm_adduser, Form_adduser);
Application.CreateForm(TForm_password, Form_password);
Application.CreateForm(TForm_deluser, Form_deluser);
Application.CreateForm(TForm_backup, Form_backup);
Application.CreateForm(TForm_recover, Form_recover);
Application.CreateForm(TForm_addcar, Form_addcar);
Application.CreateForm(TForm_adddriver, Form_adddriver);
Application.CreateForm(TForm_updatecar, Form_updatecar);
Application.CreateForm(TForm_updatedriver, Form_updatedriver);
Application.CreateForm(TForm_carout, Form_carout);
Application.CreateForm(TForm_addtype1, Form_addtype1);
Application.CreateForm(TForm_addtype2, Form_addtype2);
Application.CreateForm(TForm_addunit, Form_addunit);
Application.CreateForm(TForm_addsigner, Form_addsigner);
Application.CreateForm(TForm_addbegin, Form_addbegin);
Application.CreateForm(TForm_addend, Form_addend);
Application.CreateForm(TForm_repair, Form_repair);
Application.CreateForm(TForm_addspot, Form_addspot);
Application.CreateForm(TForm_additem, Form_additem);
Application.CreateForm(TForm_addoilspot, Form_addoilspot);
Application.CreateForm(TForm_oil, Form_oil);
Application.CreateForm(TForm_addoiltype, Form_addoiltype);
Application.CreateForm(TForm_updatecarout, Form_updatecarout);
Application.CreateForm(TForm_updateoil, Form_updateoil);
Application.CreateForm(TForm_updaterepair, Form_updaterepair);
Application.CreateForm(TForm_unitstat, Form_unitstat);
Application.CreateForm(TForm_driverstat, Form_driverstat);
Application.CreateForm(TForm_carstat, Form_carstat);
Application.CreateForm(TForm_unitstatrep, Form_unitstatrep);
Application.CreateForm(TForm_carstatrep1, Form_carstatrep1);
Application.CreateForm(TForm_carstatrep4, Form_carstatrep4);
Application.CreateForm(TForm_carstatrep2, Form_carstatrep2);
Application.CreateForm(TForm_carstatrep3, Form_carstatrep3);
Application.CreateForm(TForm_driverstatrep1, Form_driverstatrep1);
Application.CreateForm(TForm_driverstatrep2, Form_driverstatrep2);
Application.CreateForm(TForm_setting, Form_setting);
Application.Run;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -