-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfWiper.dfm
153 lines (153 loc) · 2.95 KB
/
fWiper.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
object FormFileWiper: TFormFileWiper
Left = 277
Top = 112
Width = 560
Height = 205
Caption = 'File Wiper'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object lblFile: TLabel
Left = 12
Top = 12
Width = 56
Height = 13
Alignment = taRightJustify
Caption = 'File to Wipe'
FocusControl = eFileName
Transparent = True
end
object lblSize: TLabel
Left = 17
Top = 40
Width = 51
Height = 13
Alignment = taRightJustify
Caption = 'Size of File'
FocusControl = eSize
Transparent = True
end
object Label1: TLabel
Left = 20
Top = 64
Width = 48
Height = 13
Alignment = taRightJustify
Caption = 'Drive Size'
Transparent = True
end
object lblDriveSize: TLabel
Left = 72
Top = 64
Width = 59
Height = 13
Caption = 'Drive Size'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
end
object lblFreeSpace: TLabel
Left = 72
Top = 80
Width = 66
Height = 13
Caption = 'Free Space'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
end
object Label3: TLabel
Left = 13
Top = 80
Width = 55
Height = 13
Alignment = taRightJustify
Caption = 'Free Space'
Transparent = True
end
object eFileName: TEdit
Left = 72
Top = 8
Width = 387
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'c:\wipeme.txt'
OnChange = eFileNameChange
end
object btnBrowse: TButton
Left = 467
Top = 8
Width = 74
Height = 25
Anchors = [akTop, akRight]
Caption = '&Browse'
TabOrder = 1
OnClick = btnBrowseClick
end
object eSize: TEdit
Left = 72
Top = 36
Width = 121
Height = 21
TabOrder = 2
Text = '0'
end
object btnWipe: TButton
Left = 72
Top = 104
Width = 75
Height = 25
Action = actWipe
TabOrder = 3
end
object btnClose: TButton
Left = 152
Top = 104
Width = 75
Height = 25
Caption = '&Close'
TabOrder = 4
OnClick = btnCloseClick
end
object pbWiping: TProgressBar
Left = 72
Top = 132
Width = 467
Height = 16
Anchors = [akLeft, akTop, akRight]
Min = 0
Max = 100
TabOrder = 5
end
object odWipe: TOpenDialog
Title = 'Select the File to Wipe'
Left = 468
Top = 40
end
object ActionList1: TActionList
Left = 500
Top = 40
object actWipe: TAction
Caption = '&Wipe'
Enabled = False
OnExecute = actWipeExecute
OnHint = actWipeHint
OnUpdate = actWipeUpdate
end
end
end