ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/examples/services/Unit1.lfm
Revision: 80
Committed: Mon Jan 1 11:31:07 2018 UTC (6 years, 3 months ago) by tony
File size: 2757 byte(s)
Log Message:
Fixes merged into public release

File Contents

# User Rev Content
1 tony 31 object Form1: TForm1
2 tony 80 Left = 475
3 tony 45 Height = 371
4 tony 80 Top = 425
5 tony 45 Width = 622
6 tony 31 Caption = 'Server Properties'
7 tony 45 ClientHeight = 371
8     ClientWidth = 622
9 tony 68 DefaultMonitor = dmPrimary
10 tony 31 OnShow = FormShow
11 tony 68 Position = poScreenCenter
12 tony 80 LCLVersion = '1.8.0.5'
13 tony 31 object Memo1: TMemo
14     Left = 8
15 tony 45 Height = 295
16 tony 31 Top = 9
17 tony 45 Width = 603
18 tony 31 Anchors = [akTop, akLeft, akRight, akBottom]
19 tony 45 ScrollBars = ssAutoVertical
20 tony 31 TabOrder = 0
21     end
22     object Button1: TButton
23 tony 45 Left = 535
24 tony 31 Height = 25
25 tony 45 Top = 312
26 tony 31 Width = 75
27     Anchors = [akRight, akBottom]
28     Caption = 'Close'
29     OnClick = Button1Click
30     TabOrder = 1
31     end
32 tony 45 object Button2: TButton
33     Left = 8
34     Height = 25
35     Top = 313
36     Width = 75
37     Anchors = [akLeft, akBottom]
38     Caption = 'Backup'
39     OnClick = Button2Click
40     TabOrder = 2
41     end
42     object Button3: TButton
43     Left = 88
44     Height = 25
45     Top = 313
46     Width = 75
47     Anchors = [akLeft, akBottom]
48     Caption = 'Restore'
49     OnClick = Button3Click
50     TabOrder = 3
51     end
52     object Button4: TButton
53     Left = 168
54     Height = 25
55     Top = 313
56     Width = 75
57     Anchors = [akLeft, akBottom]
58     Caption = 'Server Log'
59     OnClick = Button4Click
60     TabOrder = 4
61     end
62     object Button5: TButton
63     Left = 248
64     Height = 25
65     Top = 312
66     Width = 75
67     Anchors = [akLeft, akBottom]
68     Caption = 'Statistics'
69     OnClick = Button5Click
70     TabOrder = 5
71     end
72     object Button6: TButton
73     Left = 328
74     Height = 25
75     Top = 312
76     Width = 75
77     Caption = 'Users'
78     OnClick = Button6Click
79     TabOrder = 6
80     end
81     object Button7: TButton
82     Left = 408
83     Height = 25
84     Top = 312
85     Width = 75
86     Anchors = [akLeft, akBottom]
87     Caption = 'Validate'
88     OnClick = Button7Click
89     TabOrder = 7
90     end
91     object Button8: TButton
92     Left = 9
93     Height = 25
94     Top = 344
95     Width = 151
96     Caption = 'Limbo Transactions'
97     OnClick = Button8Click
98     TabOrder = 8
99     end
100 tony 31 object IBServerProperties1: TIBServerProperties
101     ServerName = 'localhost'
102     Protocol = TCP
103     Params.Strings = (
104     'user_name=SYSDBA'
105 tony 43 ''
106 tony 31 )
107     TraceFlags = []
108     Options = []
109     left = 320
110     top = 24
111     end
112 tony 45 object IBLogService1: TIBLogService
113     ServerName = 'localhost'
114     Protocol = TCP
115     TraceFlags = []
116     left = 320
117     top = 72
118     end
119     object IBStatisticalService1: TIBStatisticalService
120     ServerName = 'localhost'
121     Protocol = TCP
122     TraceFlags = []
123     DatabaseName = 'employee'
124 tony 80 Options = [DataPages]
125 tony 45 left = 320
126     top = 112
127     end
128     object IBValidationService1: TIBValidationService
129     ServerName = 'localhost'
130     Protocol = TCP
131     TraceFlags = []
132     DatabaseName = 'employee'
133     Options = [ValidateFull]
134     GlobalAction = CommitGlobal
135     left = 320
136     top = 160
137     end
138 tony 31 end