-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfmain.lfm
78 lines (78 loc) · 1.39 KB
/
fmain.lfm
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
object Form1: TForm1
Left = 318
Height = 175
Top = 163
Width = 375
ActiveControl = bNewInvoice
Caption = 'AR Invoices'
ClientHeight = 175
ClientWidth = 375
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.0.12.0'
object bProducts: TButton
Left = 25
Height = 25
Top = 25
Width = 100
Caption = 'Products'
OnClick = bProductsClick
TabOrder = 1
end
object bClients: TButton
Left = 150
Height = 25
Top = 26
Width = 100
Caption = 'Clients'
OnClick = bClientsClick
TabOrder = 2
end
object bInvoices: TButton
Left = 25
Height = 25
Top = 75
Width = 100
Caption = 'Invoices'
OnClick = bInvoicesClick
TabOrder = 3
end
object bNewInvoice: TButton
Left = 150
Height = 25
Top = 75
Width = 100
Caption = 'New Invoice'
Default = True
OnClick = bNewInvoiceClick
TabOrder = 0
end
object bGJ: TButton
Left = 25
Height = 25
Top = 125
Width = 225
Caption = 'General Journal'
OnClick = bGJClick
TabOrder = 4
end
object bSettings: TButton
Left = 275
Height = 25
Top = 75
Width = 75
Caption = 'Settings'
OnClick = bSettingsClick
TabOrder = 5
end
object Button7: TButton
Left = 275
Height = 25
Top = 125
Width = 75
Cancel = True
Caption = 'Quit'
ModalResult = 2
TabOrder = 6
end
end