-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrameDBEditor.dfm
More file actions
151 lines (151 loc) · 3.06 KB
/
FrameDBEditor.dfm
File metadata and controls
151 lines (151 loc) · 3.06 KB
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
object FrameDBEditor: TFrameDBEditor
Left = 0
Top = 0
ClientHeight = 311
ClientWidth = 434
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
TextHeight = 15
object pnlDBEditor: TPanel
Left = 0
Top = 0
Width = 434
Height = 311
Align = alClient
BevelOuter = bvNone
TabOrder = 0
ExplicitWidth = 428
ExplicitHeight = 294
object lblDBType: TLabel
Left = 16
Top = 16
Width = 68
Height = 15
Caption = #25968#25454#24211#31867#22411':'
end
object lblServer: TLabel
Left = 16
Top = 56
Width = 68
Height = 15
Caption = #26381#21153#22120#22320#22336':'
end
object lblPort: TLabel
Left = 16
Top = 96
Width = 42
Height = 15
Caption = #31471#21475#21495':'
end
object lblDatabase: TLabel
Left = 16
Top = 136
Width = 68
Height = 15
Caption = #25968#25454#24211#21517#31216':'
end
object lblUsername: TLabel
Left = 16
Top = 176
Width = 42
Height = 15
Caption = #29992#25143#21517':'
end
object lblPassword: TLabel
Left = 16
Top = 216
Width = 29
Height = 15
Caption = #23494#30721':'
end
object cmbDBType: TComboBox
Left = 96
Top = 13
Width = 145
Height = 23
Style = csDropDownList
TabOrder = 0
OnChange = cmbDBTypeChange
end
object edtServer: TEdit
Left = 96
Top = 53
Width = 321
Height = 23
TabOrder = 1
Text = 'localhost'
end
object edtPort: TEdit
Left = 96
Top = 93
Width = 121
Height = 23
TabOrder = 2
Text = '1433'
end
object edtDatabase: TEdit
Left = 96
Top = 133
Width = 321
Height = 23
TabOrder = 3
end
object edtUsername: TEdit
Left = 96
Top = 173
Width = 321
Height = 23
TabOrder = 4
end
object edtPassword: TEdit
Left = 96
Top = 213
Width = 321
Height = 23
PasswordChar = '*'
TabOrder = 5
end
object chkIntegratedSecurity: TCheckBox
Left = 96
Top = 248
Width = 321
Height = 17
Caption = #20351#29992#38598#25104#23433#20840#24615'('#20165#23545'SQL Server'#26377#25928')'
Checked = True
State = cbChecked
TabOrder = 6
OnClick = chkIntegratedSecurityClick
end
object btnTestConnection: TButton
Left = 96
Top = 280
Width = 105
Height = 25
Caption = #27979#35797#36830#25509
TabOrder = 7
OnClick = btnTestConnectionClick
end
object btnSave: TButton
Left = 216
Top = 280
Width = 75
Height = 25
Caption = #20445#23384
TabOrder = 8
OnClick = btnSaveClick
end
object btnCancel: TButton
Left = 304
Top = 280
Width = 75
Height = 25
Caption = #21462#28040
TabOrder = 9
OnClick = btnCancelClick
end
end
end