ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/examples/services/Unit1.lfm
Revision: 45
Committed: Tue Dec 6 10:33:46 2016 UTC (7 years, 4 months ago) by tony
File size: 2702 byte(s)
Log Message:
Committing updates for Release R2-0-0

File Contents

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