-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfManageAlbum_.dfm
167 lines (167 loc) · 3.45 KB
/
fManageAlbum_.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
157
158
159
160
161
162
163
164
165
166
167
object fManageAlbum: TfManageAlbum
Left = 0
Top = 0
Caption = 'Manage Albums'
ClientHeight = 457
ClientWidth = 257
Color = clBtnFace
Constraints.MinHeight = 496
Constraints.MinWidth = 273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
DesignSize = (
257
457)
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 23
Top = 8
Width = 210
Height = 13
Alignment = taCenter
Anchors = [akTop]
Caption = 'Select Band Whose Albums Will be Modified:'
end
object Label2: TLabel
Left = 23
Top = 64
Width = 113
Height = 13
Alignment = taCenter
Anchors = [akTop]
Caption = 'Select Album to Modify:'
end
object Label3: TLabel
Left = 23
Top = 160
Width = 201
Height = 13
Anchors = [akTop]
Caption = 'Enter Tags (put each one on its own line):'
end
object Label4: TLabel
Left = 23
Top = 129
Width = 26
Height = 13
Anchors = [akLeft, akTop, akRight]
Caption = 'Year:'
end
object Label5: TLabel
Left = 23
Top = 331
Width = 130
Height = 13
Anchors = [akLeft, akRight, akBottom]
Caption = 'Select Color for this Album:'
end
object luBands: TComboBox
Left = 23
Top = 27
Width = 210
Height = 21
Anchors = [akTop]
TabOrder = 0
OnChange = luBandsChange
end
object luAlbums: TComboBox
Left = 23
Top = 83
Width = 210
Height = 21
Anchors = [akTop]
TabOrder = 1
OnChange = luAlbumsChange
end
object cbFavorite: TCheckBox
Left = 120
Top = 128
Width = 113
Height = 17
Anchors = [akTop]
Caption = 'Album is a favorite'
TabOrder = 2
OnClick = DetermineNeedSave
end
object textBox: TMemo
Left = 23
Top = 179
Width = 210
Height = 78
Anchors = [akLeft, akTop, akRight, akBottom]
Lines.Strings = (
'Memo1')
TabOrder = 3
WordWrap = False
OnChange = DetermineNeedSave
end
object btnSave: TButton
Left = 23
Top = 391
Width = 210
Height = 25
Anchors = [akLeft, akRight, akBottom]
Caption = 'Save'
TabOrder = 4
OnClick = btnSaveClick
end
object btnDelete: TButton
Left = 23
Top = 422
Width = 210
Height = 25
Anchors = [akLeft, akRight, akBottom]
Caption = 'Delete Selected Album'
TabOrder = 5
OnClick = btnDeleteClick
end
object edYear: TEdit
Left = 55
Top = 126
Width = 59
Height = 21
Anchors = [akLeft, akTop, akRight]
NumbersOnly = True
TabOrder = 6
OnChange = DetermineNeedSave
end
object btnApplyBand: TButton
Left = 23
Top = 263
Width = 210
Height = 25
Anchors = [akLeft, akRight, akBottom]
Caption = 'Apply Tags to This Album'#39's Band'
TabOrder = 7
OnClick = btnApplyBandClick
end
object btnApplySong: TButton
Left = 23
Top = 294
Width = 210
Height = 25
Anchors = [akLeft, akRight, akBottom]
Caption = 'Apply Tags to All This Album'#39's Songs'
TabOrder = 8
OnClick = btnApplySongClick
end
object luColor: TColorBox
Left = 23
Top = 350
Width = 201
Height = 22
DefaultColorColor = clWhite
Style = [cbStandardColors, cbExtendedColors, cbPrettyNames]
Anchors = [akLeft, akRight, akBottom]
TabOrder = 9
OnChange = DetermineNeedSave
end
end