blob: a4291e7b240fefd81cfef381a2f2b6451500177e (
plain) (
blame)
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
|
object mainform: Tmainform
Left = 328
Top = 228
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Ultrastar Deluxe Score Converter'
ClientHeight = 159
ClientWidth = 449
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 8
Width = 60
Height = 13
Caption = 'SongFolder: '
end
object lFolder: TLabel
Left = 8
Top = 24
Width = 29
Height = 13
Caption = 'Folder'
end
object Label2: TLabel
Left = 8
Top = 48
Width = 49
Height = 13
Caption = 'Database:'
end
object lDatabase: TLabel
Left = 8
Top = 64
Width = 46
Height = 13
Caption = 'Database'
end
object lDatabase2: TLabel
Left = 72
Top = 48
Width = 54
Height = 13
Caption = 'lDatabase2'
end
object lFolder2: TLabel
Left = 72
Top = 8
Width = 37
Height = 13
Caption = 'lFolder2'
end
object lStatus: TLabel
Left = 0
Top = 96
Width = 449
Height = 13
Alignment = taCenter
AutoSize = False
Caption = 'lStatus'
end
object bFLoad: TButton
Left = 176
Top = 8
Width = 57
Height = 17
Caption = 'Load'
TabOrder = 0
OnClick = bFLoadClick
end
object bDLoad: TButton
Left = 176
Top = 48
Width = 57
Height = 17
Caption = 'Load'
TabOrder = 1
OnClick = bDLoadClick
end
object bToDB: TButton
Left = 16
Top = 112
Width = 153
Height = 17
Caption = 'Convert *.SCO to Database'
Enabled = False
TabOrder = 2
OnClick = bToDBClick
end
object bFromDB: TButton
Left = 288
Top = 112
Width = 145
Height = 17
Caption = 'Convert Database to *.SCO'
Enabled = False
TabOrder = 3
OnClick = bFromDBClick
end
object pProgress: TProgressBar
Left = 8
Top = 136
Width = 433
Height = 17
TabOrder = 4
end
object oDatabase: TOpenDialog
Filter = 'Ultrastar Deluxe Database|ultrastar.db'
Left = 136
Top = 48
end
end
|