-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmMain.dfm
139 lines (139 loc) · 2.57 KB
/
frmMain.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
object Main: TMain
Left = 0
Top = 0
BorderStyle = bsSingle
Caption = 'Build Me A Club'
ClientHeight = 436
ClientWidth = 628
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
DesignSize = (
628
436)
PixelsPerInch = 96
TextHeight = 17
object Label1: TLabel
Left = 43
Top = 15
Width = 37
Height = 17
Alignment = taRightJustify
Caption = 'Server'
end
object Label2: TLabel
Left = 14
Top = 46
Width = 66
Height = 17
Alignment = taRightJustify
Caption = 'User Name'
end
object Label3: TLabel
Left = 24
Top = 77
Width = 56
Height = 17
Alignment = taRightJustify
Caption = 'Password'
end
object prefServer: TEdit
Left = 86
Top = 12
Width = 534
Height = 25
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'localhost\SQLEXPRESS'
end
object prefUser: TEdit
Left = 86
Top = 43
Width = 403
Height = 25
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object prefPassword: TEdit
Left = 86
Top = 74
Width = 299
Height = 25
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
end
object prefUseOSAuthentication: TCheckBox
Left = 86
Top = 106
Width = 163
Height = 17
Caption = 'Use OS Authentication'
Checked = True
State = cbChecked
TabOrder = 3
end
object Panel1: TPanel
Left = 0
Top = 395
Width = 628
Height = 41
Align = alBottom
BevelOuter = bvNone
TabOrder = 4
object btnCancel: TButton
Left = 236
Top = 8
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 0
OnClick = btnCancelClick
end
object btnOk: TButton
Left = 317
Top = 8
Width = 75
Height = 25
Caption = 'Ok'
TabOrder = 1
OnClick = btnOkClick
end
end
object Memo1: TMemo
Left = 8
Top = 152
Width = 612
Height = 237
Lines.Strings = (
'Artanemus'
'Build Me A Club'
'Version: 1.0'
''
'Author Ben Ambrose'
'Copyright 2020-2021')
ScrollBars = ssVertical
TabOrder = 5
end
object ProgressBar1: TProgressBar
Left = 8
Top = 129
Width = 612
Height = 17
TabOrder = 6
end
object FDConnection1: TFDConnection
Left = 496
Top = 40
end
object FDPhysMSSQLDriverLink1: TFDPhysMSSQLDriverLink
Left = 568
Top = 40
end
end