-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathQBDBFrm.lfm
93 lines (93 loc) · 1.72 KB
/
QBDBFrm.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
object OQBDBForm: TOQBDBForm
Left = 537
Height = 147
Top = 250
Width = 249
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Select Database'
ClientHeight = 147
ClientWidth = 249
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Position = poScreenCenter
LCLVersion = '1.0.6.0'
object Bevel1: TBevel
Left = 1
Height = 118
Top = 1
Width = 248
Shape = bsFrame
end
object Label1: TLabel
Left = 13
Height = 14
Top = 7
Width = 62
Caption = 'Select Alias :'
ParentColor = False
end
object Label2: TLabel
Left = 13
Height = 14
Top = 46
Width = 67
Caption = 'Or Directory :'
ParentColor = False
end
object BtnOk: TButton
Left = 119
Height = 20
Top = 124
Width = 61
Caption = '&Ok'
Default = True
ModalResult = 1
TabOrder = 0
end
object BtnCancel: TButton
Left = 186
Height = 20
Top = 124
Width = 59
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 1
end
object ComboDB: TComboBox
Left = 13
Height = 21
Top = 20
Width = 222
ItemHeight = 13
Style = csDropDownList
TabOrder = 2
end
object CheckDB: TCheckBox
Left = 13
Height = 19
Top = 91
Width = 223
Caption = 'Include System Tables (for SQL-database)'
TabOrder = 3
end
object EdtDir: TEdit
Left = 13
Height = 21
Top = 59
Width = 202
TabOrder = 4
end
object btnDir: TButton
Left = 215
Height = 20
Top = 59
Width = 20
Caption = '...'
OnClick = btnDirClick
TabOrder = 5
end
end