-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOS.dpr
63 lines (59 loc) · 2.63 KB
/
POS.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
program POS;
uses
Vcl.Forms,
DM_u in 'DM_u.pas' {DataModule1: TDataModule},
Login_u in 'Login_u.pas' {frmLogin},
SaleScreen_u in 'SaleScreen_u.pas' {frmSales},
clsEmployeeInfo in 'clsEmployeeInfo.pas',
Vcl.Themes,
Vcl.Styles,
Admin_u in 'Admin_u.pas' {frmAdmin},
Transactions_u in 'Transactions_u.pas' {frmTransactions},
TransactionDetails_u in 'TransactionDetails_u.pas' {frmTransactionsDetails},
AddProduct_u in 'AddProduct_u.pas' {frmAddProduct},
EmployeeManager_u in 'EmployeeManager_u.pas' {frmEmployeeManager},
EditEmployeeInfo_u in 'EditEmployeeInfo_u.pas' {frmEditEmployeeInfo},
AddEmployee_u in 'AddEmployee_u.pas' {frmAddEmployee},
clsStockManagement_u in 'clsStockManagement_u.pas',
StockManager_u in 'StockManager_u.pas' {frmStockManager},
ProductManager_u in 'ProductManager_u.pas' {frmProductManager},
EditProduct_u in 'EditProduct_u.pas' {frmEditProduct},
clsPrintSlip in 'clsPrintSlip.pas',
clsExport in 'clsExport.pas',
dmWebServer_u in 'dmWebServer_u.pas' {dmHttpServer: TDataModule},
About_u in 'About_u.pas' {AboutBox},
GiftCard_u in 'GiftCard_u.pas' {frmGiftCards},
AddCard_u in 'AddCard_u.pas' {frmAddCard},
EditCard_u in 'EditCard_u.pas' {frmEditCard},
clsGiftCard in 'clsGiftCard.pas',
clsLogging in 'clsLogging.pas',
LogView_u in 'LogView_u.pas' {frmLog},
DBInfo_u in 'DBInfo_u.pas' {frmDBInfo};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'POS 2.0';
TStyleManager.TrySetStyle('Windows10 SlateGray');
Application.CreateForm(TfrmLogin, frmLogin);
Application.CreateForm(TfrmDBInfo, frmDBInfo);
Application.CreateForm(TDataModule1, DataModule1);
Application.CreateForm(TfrmSales, frmSales);
Application.CreateForm(TfrmAdmin, frmAdmin);
Application.CreateForm(TfrmTransactions, frmTransactions);
Application.CreateForm(TfrmTransactionsDetails, frmTransactionsDetails);
Application.CreateForm(TfrmAddProduct, frmAddProduct);
Application.CreateForm(TfrmEmployeeManager, frmEmployeeManager);
Application.CreateForm(TfrmEditEmployeeInfo, frmEditEmployeeInfo);
Application.CreateForm(TfrmAddEmployee, frmAddEmployee);
Application.CreateForm(TfrmStockManager, frmStockManager);
Application.CreateForm(TfrmProductManager, frmProductManager);
Application.CreateForm(TfrmEditProduct, frmEditProduct);
Application.CreateForm(TdmHttpServer, dmHttpServer);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TfrmGiftCards, frmGiftCards);
Application.CreateForm(TfrmAddCard, frmAddCard);
Application.CreateForm(TfrmEditCard, frmEditCard);
Application.CreateForm(TfrmLog, frmLog);
Application.Run;
end.