-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFrmRenameRom.vb
More file actions
593 lines (548 loc) · 29.6 KB
/
Copy pathFrmRenameRom.vb
File metadata and controls
593 lines (548 loc) · 29.6 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
Imports System.IO
Public Class FrmRenameRom
Private pSystem As String
Private pRom As String
Private pRowID As Integer
Public Sub New(ByVal System As String, ByVal RowID As Integer)
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
pSystem = System
pRom = Form1.DataGridView4.Rows(RowID).Cells(0).Value.ToString
pRowID = RowID
'Default config
Label1.Text = "Renaming [" & pSystem & "]/[" & pRom & "]"
RadioButton1.Checked = True
RadioButton2.Checked = False
RadioButton3.Checked = False
RadioButton4.Checked = False
RadioButton5.Checked = True
CheckBox1.Checked = True
CheckBox2.Checked = True
CheckBox3.Checked = True
Button3.Enabled = False
Button3.Visible = False
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If pRom = TextBox1.Text Then
MsgBox("Nothing to do -> same rom !", MsgBoxStyle.Information, "St00pid?")
Else
RenameRom()
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", ex.Message.ToString)
End Try
End Sub
Private Sub RenameRom()
Dim RenameRomFile As Boolean = CheckBox3.Checked
Dim NewName As String = TextBox1.Text
Dim CopyMedia As Boolean = RadioButton1.Checked
Dim MoveMedia As Boolean = RadioButton2.Checked
'Dim CopyNothing As Boolean = RadioButton3.Checked
Dim IncludeHyperSpinMedia As Boolean = CheckBox1.Checked
Dim IncludeHyperPauseMedia As Boolean = CheckBox2.Checked
Dim Overwrite As Boolean = CheckBox4.Checked
'check if name is not nothing
If NewName = "" Then
MsgBox("Please enter a new name !", MsgBoxStyle.Information, "Oops")
Exit Sub
End If
'if RenameRomFile=true & rom already existing : ask question to overwrite or not
If RenameRomFile = True And File.Exists(gHS.Systems(pSystem).mRomPath & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).RomPath)) = True Then
If MsgBox("Ooops ! Looks like the file you attempt to rename is already existing ..." & vbCrLf & "OVERWRITE IT ?", MsgBoxStyle.YesNo, "Warning") = MsgBoxResult.No Then
Exit Sub
End If
End If
If MsgBox("Are you sure ? XML will be saved after this operation.", MsgBoxStyle.YesNo, "Confirm") = MsgBoxResult.Yes Then
Try
'change XML
Form1.DataGridView4.Rows(pRowID).Cells(0).Value = NewName
Catch ex As Exception
LogEntry(LogType._Error, "{0}", "Cannot change the rom name in the list ... (pls contact the Dev)")
Exit Sub
End Try
'renameRomFile
If RenameRomFile = True Then
Try
FileSystem.Rename(gHS.Systems(pSystem).Roms(pRom).RomPath, gHS.Systems(pSystem).mRomPath & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).RomPath))
LogEntry(LogType._Info, "{0}", "Rom renamed from " & gHS.Systems(pSystem).Roms(pRom).RomPath & " -to-> " & gHS.Systems(pSystem).mRomPath & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).RomPath))
Catch ex As Exception
MsgBox("Error ! : cannot rename romfile :( --> abording", MsgBoxStyle.Critical, "Error")
LogEntry(LogType._Error, "{0}", "Error ! : cannot rename romfile :( --> abording")
Exit Sub
End Try
End If
'copy data or not
If CopyMedia = True Or MoveMedia = True Then
Dim Orig As String = ""
Dim Dest As String = ""
If IncludeHyperSpinMedia = True Then
'then copy theme, wheel, video, art1, art2, art3, art4
LogEntry(LogType._Info, "{0}", "Copy started (overwrite=" & Overwrite.ToString & ") --> ")
'Theme
Orig = gHS.Systems(pSystem).Roms(pRom).ThemePath
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).ThemePath) & "\" & NewName & ".zip"
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Theme not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Video
Orig = gHS.Systems(pSystem).Roms(pRom).VideoPath
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).VideoPath) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).VideoPath)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Video not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Wheel
Orig = gHS.Systems(pSystem).Roms(pRom).WheelPath
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).WheelPath) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).WheelPath)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Wheel not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art1
Orig = gHS.Systems(pSystem).Roms(pRom).Art1Path
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).Art1Path) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).Art1Path)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art1 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art2
Orig = gHS.Systems(pSystem).Roms(pRom).Art2Path
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).Art2Path) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).Art2Path)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art2 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art3
Orig = gHS.Systems(pSystem).Roms(pRom).Art3Path
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).Art3Path) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).Art3Path)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art3 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art4
Orig = gHS.Systems(pSystem).Roms(pRom).Art4Path
Dest = Path.GetDirectoryName(gHS.Systems(pSystem).Roms(pRom).Art4Path) & "\" & NewName & Path.GetExtension(gHS.Systems(pSystem).Roms(pRom).Art4Path)
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art4 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
End If
If IncludeHyperPauseMedia = True Then
'Copy :
'Artwork
Orig = gHS.Systems(pSystem).Roms(pRom).ArtworkPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Backgrounds
Orig = gHS.Systems(pSystem).Roms(pRom).BackgroundsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Bezels
Orig = gHS.Systems(pSystem).Roms(pRom).BezelsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Controller
Orig = gHS.Systems(pSystem).Roms(pRom).ControllerPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Fade
Orig = gHS.Systems(pSystem).Roms(pRom).FadePath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Fonts
Orig = gHS.Systems(pSystem).Roms(pRom).FontsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Guides
Orig = gHS.Systems(pSystem).Roms(pRom).GuidesPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Manuals
Orig = gHS.Systems(pSystem).Roms(pRom).ManualsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Menu Images
Orig = gHS.Systems(pSystem).Roms(pRom).MenuImagesPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'MultiGame
Orig = gHS.Systems(pSystem).Roms(pRom).MultiGamePath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Music
Orig = gHS.Systems(pSystem).Roms(pRom).MusicPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Sounds
Orig = gHS.Systems(pSystem).Roms(pRom).SoundsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Videos
Orig = gHS.Systems(pSystem).Roms(pRom).HLVideosPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Wheels
Orig = gHS.Systems(pSystem).Roms(pRom).HLWheelsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = Directory.GetParent(Orig).FullName & "\" & NewName
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
End If
End If
'save XML
Form1.ToolStripButton6.PerformClick()
Form1.Show()
Form1.Focus()
Me.Close()
Me.Dispose()
Else
Exit Sub
End If
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Form1.Show()
Form1.Focus()
Me.Close()
Me.Dispose()
End Sub
Private Sub RadioButton4_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton4.CheckedChanged
If RadioButton4.Checked = True Then
Button3.Visible = True
Button3.Enabled = True
TextBox1.Text = ""
CheckBox3.Checked = False
'CheckBox3.Enabled = False
Else
Button3.Visible = False
Button3.Enabled = False
TextBox1.Text = "[enter new name]"
CheckBox3.Checked = True
'CheckBox3.Enabled = True
End If
End Sub
Private Sub RadioButton3_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton3.CheckedChanged
If RadioButton3.Checked = True Then
CheckBox1.Checked = False
CheckBox1.Enabled = False
CheckBox2.Checked = False
CheckBox2.Enabled = False
Else
CheckBox1.Checked = True
CheckBox1.Enabled = True
CheckBox2.Checked = True
CheckBox2.Enabled = True
End If
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim openFileDialog1 As New OpenFileDialog()
Dim DlgFilter As String = "Roms (*.*)|*.*"
openFileDialog1.RestoreDirectory = True
Try
openFileDialog1.InitialDirectory = gHS.Systems(pSystem).mRomPath
Catch ex As Exception
'
End Try
openFileDialog1.Filter = DlgFilter
openFileDialog1.FilterIndex = 1
If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
TextBox1.Text = Path.GetFileNameWithoutExtension(openFileDialog1.FileName)
Else
TextBox1.Text = ""
End If
End Sub
End Class