-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathClientMainForm.dfm
156 lines (156 loc) · 3.11 KB
/
ClientMainForm.dfm
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
object fmClientMain: TfmClientMain
Left = 0
Top = 0
Caption = 'TMS RemoteDB - Basic Demo Client'
ClientHeight = 522
ClientWidth = 638
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Splitter1: TSplitter
Left = 0
Top = 161
Width = 638
Height = 3
Cursor = crVSplit
Align = alTop
ExplicitTop = 65
ExplicitWidth = 407
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 638
Height = 161
Align = alTop
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
638
161)
object Label1: TLabel
Left = 8
Top = 10
Width = 128
Height = 13
Caption = 'TMS RemoteDB Server Url:'
end
object edServerUri: TEdit
Left = 142
Top = 7
Width = 402
Height = 21
Anchors = [akLeft, akTop, akRight]
Color = clBtnFace
TabOrder = 0
Text = 'edServerUri'
end
object mmSQL: TMemo
Left = 8
Top = 34
Width = 536
Height = 117
Anchors = [akLeft, akTop, akRight]
Lines.Strings = (
'SELECT *'
'FROM '
' <table>'
'WHERE '
' <condition>')
TabOrder = 1
WordWrap = False
end
object btExecute: TButton
Left = 550
Top = 63
Width = 80
Height = 25
Anchors = [akTop, akRight]
Caption = 'Execute SQL'
TabOrder = 2
OnClick = btExecuteClick
end
object btOpen: TButton
Left = 550
Top = 34
Width = 80
Height = 25
Anchors = [akTop, akRight]
Caption = 'Open SQL'
TabOrder = 3
OnClick = btOpenClick
end
object btConnect: TButton
Left = 550
Top = 5
Width = 80
Height = 25
Anchors = [akTop, akRight]
Caption = 'Connect'
TabOrder = 4
OnClick = btConnectClick
end
end
object Panel2: TPanel
Left = 0
Top = 164
Width = 638
Height = 358
Align = alClient
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
638
358)
object Panel3: TPanel
Left = 0
Top = 0
Width = 638
Height = 33
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object DBNavigator1: TDBNavigator
Left = 8
Top = 6
Width = 240
Height = 25
DataSource = DataSource1
TabOrder = 0
end
end
object DBGrid1: TDBGrid
Left = 8
Top = 37
Width = 622
Height = 313
Anchors = [akLeft, akTop, akRight, akBottom]
DataSource = DataSource1
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
end
end
object DataSource1: TDataSource
DataSet = XDataset1
Left = 136
Top = 216
end
object XDataset1: TXDataset
Database = FDMCommon.gmDatabase
Params = <>
Left = 136
Top = 272
end
end