Changes for issue #54

This commit is contained in:
Michael J. Seiferling
2016-06-18 18:41:00 -06:00
parent f312e315b9
commit 86ffc75666
4 changed files with 24 additions and 20 deletions
+6 -4
View File
@@ -98,14 +98,16 @@ Public Class frmStartUpWizard
End Sub
Private Sub DownloadSettings()
Dim sImportURL As String
If mgrCommon.IsUnix Then
If mgrCommon.ShowMessage(frmGameManager_ConfirmUnixImportWarning, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
Exit Sub
End If
sImportURL = App_URLImportLinux
Else
sImportURL = App_URLImport
End If
If mgrCommon.ShowMessage(frmStartUpWizard_ConfirmOfficialImport, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
If mgrMonitorList.DoImport(App_URLImport) Then
If mgrMonitorList.DoImport(sImportURL) Then
oGameData = mgrMonitorList.ReadList(mgrMonitorList.eListTypes.FullList)
If oSettings.Sync Then mgrMonitorList.SyncMonitorLists(oSettings.SyncFields)
End If