Updated Import / Export / Sync with game id changes

This commit is contained in:
MikeMaximus
2018-03-01 20:45:43 -06:00
parent 848679c1b1
commit b7b23cba4a
6 changed files with 79 additions and 20 deletions
+7 -2
View File
@@ -82,9 +82,9 @@ Public Class frmAdvancedImport
sTags = sTags.TrimEnd(New Char() {",", " "})
oListViewItem = New ListViewItem(New String() {oApp.Name, oApp.TrueProcess, sTags})
oListViewItem.Tag = oApp.CompoundKey
oListViewItem.Tag = oApp.ID
If FinalData.ContainsKey(oApp.CompoundKey) Then
If FinalData.ContainsKey(oApp.ID) Then
oListViewItem.Checked = True
Else
oListViewItem.Checked = False
@@ -103,6 +103,11 @@ Public Class frmAdvancedImport
End If
End If
If oApp.ImportUpdate Then
oListViewItem.ForeColor = Color.Red
oListViewItem.Checked = True
End If
If sFilter = String.Empty Then
bAddItem = True
Else