diff --git a/GBM/Forms/frmGameManager.vb b/GBM/Forms/frmGameManager.vb
index f1a17f8..a3c7533 100644
--- a/GBM/Forms/frmGameManager.vb
+++ b/GBM/Forms/frmGameManager.vb
@@ -657,7 +657,7 @@ Public Class frmGameManager
If IO.File.Exists(oApp.Icon) Then
pbIcon.Image = Image.FromFile(oApp.Icon)
Else
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
End If
'Stats
@@ -745,7 +745,7 @@ Public Class frmGameManager
WipeControls(grpConfig.Controls)
WipeControls(grpExtra.Controls)
WipeControls(grpStats.Controls)
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
chkEnabled.Enabled = True
chkMonitorOnly.Enabled = True
btnSave.Enabled = True
@@ -831,7 +831,7 @@ Public Class frmGameManager
WipeControls(grpConfig.Controls)
WipeControls(grpExtra.Controls)
WipeControls(grpStats.Controls)
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
lblSync.Visible = False
btnSave.Enabled = False
btnCancel.Enabled = False
@@ -856,7 +856,7 @@ Public Class frmGameManager
WipeControls(grpConfig.Controls)
WipeControls(grpExtra.Controls)
WipeControls(grpStats.Controls)
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
lblSync.Visible = False
btnSave.Enabled = True
btnCancel.Enabled = False
diff --git a/GBM/Forms/frmMain.Designer.vb b/GBM/Forms/frmMain.Designer.vb
index 1c8950c..702f1cb 100644
--- a/GBM/Forms/frmMain.Designer.vb
+++ b/GBM/Forms/frmMain.Designer.vb
@@ -223,7 +223,7 @@ Partial Class frmMain
'
Me.gMonStripAdminButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.gMonStripAdminButton.DropDownButtonWidth = 0
- Me.gMonStripAdminButton.Image = Global.GBM.My.Resources.Resources.User
+ Me.gMonStripAdminButton.Image = Global.GBM.My.Resources.Resources.Icon_User
Me.gMonStripAdminButton.ImageTransparentColor = System.Drawing.Color.Magenta
Me.gMonStripAdminButton.Name = "gMonStripAdminButton"
Me.gMonStripAdminButton.Size = New System.Drawing.Size(21, 20)
diff --git a/GBM/Forms/frmMain.vb b/GBM/Forms/frmMain.vb
index 1b766c3..00b25d9 100644
--- a/GBM/Forms/frmMain.vb
+++ b/GBM/Forms/frmMain.vb
@@ -313,8 +313,8 @@ Public Class frmMain
Else
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationSingle, slRestoreData.Count)
End If
- gMonNotification.Image = Inbox
- gMonTrayNotification.Image = Inbox
+ gMonNotification.Image = Icon_Inbox
+ gMonTrayNotification.Image = Icon_Inbox
gMonNotification.Text = sNotification
gMonTrayNotification.Text = sNotification
gMonNotification.Visible = True
@@ -359,7 +359,7 @@ Public Class frmMain
lblTimeSpent.Visible = True
End If
Else
- pbIcon.Image = Searching
+ pbIcon.Image = Icon_Searching
lblGameTitle.Text = frmMain_NoGameDetected
lblStatus1.Text = String.Empty
lblStatus2.Text = String.Empty
@@ -384,7 +384,7 @@ Public Class frmMain
Else
pbTime.Visible = False
lblTimeSpent.Visible = False
- pbIcon.Image = Working
+ pbIcon.Image = Icon_Working
lblGameTitle.Text = sTitle
lblStatus1.Text = sStatus1
lblStatus2.Text = sStatus2
@@ -409,7 +409,7 @@ Public Class frmMain
lblGameTitle.Text = frmMain_MultipleGames
pbTime.Visible = False
lblTimeSpent.Visible = False
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
lblStatus1.Text = frmMain_NoDetails
Else
bAllowIcon = True
@@ -426,7 +426,7 @@ Public Class frmMain
sCompanyName = oProcess.FoundProcess.MainModule.FileVersionInfo.CompanyName
Catch ex As Exception
- pbIcon.Image = Unknown
+ pbIcon.Image = Icon_Unknown
End Try
'Check for a custom icon & details
@@ -993,11 +993,11 @@ Public Class frmMain
gMonStripStatusButton.ToolTipText = frmMain_gMonStripStatusButtonToolTip
If mgrCommon.IsElevated Then
- gMonStripAdminButton.Image = Admin
+ gMonStripAdminButton.Image = Icon_Admin
gMonStripAdminButton.ToolTipText = frmMain_RunningAsAdmin
Else
- gMonStripAdminButton.Image = User
+ gMonStripAdminButton.Image = Icon_User
gMonStripAdminButton.ToolTipText = frmMain_RunningAsNormal
End If
btnCancelOperation.Visible = False
@@ -1005,7 +1005,7 @@ Public Class frmMain
lblLastActionTitle.Visible = False
lblLastAction.Text = String.Empty
pbTime.SizeMode = PictureBoxSizeMode.AutoSize
- pbTime.Image = Clock
+ pbTime.Image = Icon_Clock
Me.Size = New System.Drawing.Size(540, 245)
AddHandler mgrMonitorList.UpdateLog, AddressOf UpdateLog
ResetGameInfo()
@@ -1023,14 +1023,14 @@ Public Class frmMain
tmScanTimer.Stop()
eCurrentStatus = eStatus.Stopped
UpdateStatus(frmMain_NotScanning)
- gMonStripStatusButton.Image = Stopped
+ gMonStripStatusButton.Image = Icon_Stopped
gMonTray.Icon = GBM_Tray_Stopped
Else
StartScan()
StartSyncWatcher()
eCurrentStatus = eStatus.Running
UpdateStatus(frmMain_NoGameDetected)
- gMonStripStatusButton.Image = Ready
+ gMonStripStatusButton.Image = Icon_Ready
gMonTray.Icon = GBM_Tray_Ready
End If
ToggleMenuText()
@@ -1042,7 +1042,7 @@ Public Class frmMain
tmScanTimer.Stop()
eCurrentStatus = eStatus.Paused
UpdateStatus(frmMain_NotScanning)
- gMonStripStatusButton.Image = Detected
+ gMonStripStatusButton.Image = Icon_Detected
gMonTray.Icon = GBM_Tray_Detected
End If
ToggleMenuText()
@@ -1054,7 +1054,7 @@ Public Class frmMain
StartScan()
StartSyncWatcher()
eCurrentStatus = eStatus.Running
- gMonStripStatusButton.Image = Ready
+ gMonStripStatusButton.Image = Icon_Ready
gMonTray.Icon = GBM_Tray_Ready
UpdateStatus(frmMain_NoGameDetected)
End If
@@ -1067,7 +1067,7 @@ Public Class frmMain
tmScanTimer.Stop()
eCurrentStatus = eStatus.Stopped
UpdateStatus(frmMain_NotScanning)
- gMonStripStatusButton.Image = Stopped
+ gMonStripStatusButton.Image = Icon_Stopped
gMonTray.Icon = GBM_Tray_Stopped
ToggleMenuText()
ToggleMenuEnable()
diff --git a/GBM/My Project/Resources.Designer.vb b/GBM/My Project/Resources.Designer.vb
index c24089f..b61b14e 100644
--- a/GBM/My Project/Resources.Designer.vb
+++ b/GBM/My Project/Resources.Designer.vb
@@ -60,16 +60,6 @@ Namespace My.Resources
End Set
End Property
- '''
- ''' Looks up a localized resource of type System.Drawing.Bitmap.
- '''
- Friend ReadOnly Property Admin() As System.Drawing.Bitmap
- Get
- Dim obj As Object = ResourceManager.GetObject("Admin", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
- End Get
- End Property
-
'''
''' Looks up a localized string similar to There are unsaved changes on this form. Do you want to save?.
'''
@@ -78,7 +68,7 @@ Namespace My.Resources
Return ResourceManager.GetString("App_ConfirmDirty", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to 2015 Michael J. Seiferling.
'''
@@ -87,7 +77,7 @@ Namespace My.Resources
Return ResourceManager.GetString("App_Copyright", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] KB.
'''
@@ -96,7 +86,7 @@ Namespace My.Resources
Return ResourceManager.GetString("App_KB", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] MB.
'''
@@ -105,7 +95,7 @@ Namespace My.Resources
Return ResourceManager.GetString("App_MB", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game Backup Monitor.
'''
@@ -114,7 +104,7 @@ Namespace My.Resources
Return ResourceManager.GetString("App_NameLong", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to GBM.
'''
@@ -123,27 +113,7 @@ Namespace My.Resources
Return ResourceManager.GetString("AppNameShort", resourceCulture)
End Get
End Property
-
- '''
- ''' Looks up a localized resource of type System.Drawing.Bitmap.
- '''
- Friend ReadOnly Property Clock() As System.Drawing.Bitmap
- Get
- Dim obj As Object = ResourceManager.GetObject("Clock", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
- End Get
- End Property
-
- '''
- ''' Looks up a localized resource of type System.Drawing.Bitmap.
- '''
- Friend ReadOnly Property Detected() As System.Drawing.Bitmap
- Get
- Dim obj As Object = ResourceManager.GetObject("Detected", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
- End Get
- End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] by [PARAM].
'''
@@ -152,7 +122,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_BackupTimeAndName", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to +.
'''
@@ -161,7 +131,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnAdd", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to ....
'''
@@ -170,7 +140,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnAppPathBrowse", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Backup.
'''
@@ -179,7 +149,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Cancel.
'''
@@ -188,7 +158,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnCancel", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to C&lose.
'''
@@ -197,7 +167,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnClose", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to -.
'''
@@ -206,7 +176,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnDelete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Delete Backup.
'''
@@ -215,7 +185,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnDeleteBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to E&xclude Items....
'''
@@ -224,7 +194,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnExclude", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Export.
'''
@@ -233,7 +203,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnExport", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to ....
'''
@@ -242,7 +212,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnIconBrowse", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Import.
'''
@@ -251,7 +221,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnImport", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to In&clude Items....
'''
@@ -260,7 +230,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnInclude", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Mark as Restored.
'''
@@ -269,7 +239,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnMarkAsRestored", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Open Backup File.
'''
@@ -278,7 +248,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnOpenBackupFile", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to O&pen Restore Path.
'''
@@ -287,7 +257,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnOpenRestorePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to ....
'''
@@ -296,7 +266,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnProcessBrowse", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Restore.
'''
@@ -305,7 +275,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnRestore", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Save.
'''
@@ -314,7 +284,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnSave", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to ....
'''
@@ -323,7 +293,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnSavePathBrowse", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Tags....
'''
@@ -332,7 +302,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_btnTags", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Monitor this game.
'''
@@ -341,7 +311,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_chkEnabled", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Save entire folder.
'''
@@ -350,7 +320,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_chkFolderSave", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Monitor only.
'''
@@ -359,7 +329,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_chkMonitorOnly", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Timestamp each backup.
'''
@@ -368,7 +338,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_chkTimeStamp", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose a custom icon for the game.
'''
@@ -377,7 +347,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseCustomIcon", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose exe file that starts the application.
'''
@@ -386,7 +356,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseExe", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose the location of application's exe file:.
'''
@@ -395,7 +365,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseExePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose a location for the export file.
'''
@@ -404,7 +374,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseExportXML", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose a valid xml file to import.
'''
@@ -413,7 +383,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseImportXML", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose the saved game folder:.
'''
@@ -422,7 +392,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ChooseSaveFolder", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &File....
'''
@@ -431,7 +401,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_cmsFile", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Official List....
'''
@@ -440,7 +410,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_cmsOfficial", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to run a backup for [PARAM]? This will close the form..
'''
@@ -449,7 +419,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to This will delete the backup file and all records of this backup. This cannot be undone. [BR][BR]Do you want to remove the data for [PARAM]?.
'''
@@ -458,7 +428,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmBackupDelete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The backup folder [PARAM] still contains [PARAM] directories and [PARAM] files.[BR][BR]Do you want to delete the contents and remove the sub-folder for this game?.
'''
@@ -467,7 +437,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmBackupFolderDelete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to delete [PARAM]? This cannot be undone.[BR][BR]This will not delete any backup files that already exist for this game..
'''
@@ -476,7 +446,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmGameDelete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Do you want to mark [PARAM] as restored? This cannot be undone..
'''
@@ -485,7 +455,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMark", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to run a backup for [PARAM] games? This will close the form..
'''
@@ -494,7 +464,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMultiBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to delete the [PARAM] selected games? This cannot be undone..
'''
@@ -503,7 +473,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMultiGameDelete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Do you want to mark [PARAM] games as restored? This cannot be undone..
'''
@@ -512,7 +482,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMultiMark", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to restore the backups for [PARAM] games? This will close the form..
'''
@@ -521,7 +491,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMultiRestore", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to save the following changes to [PARAM] selected games?[BR][BR]Monitor this game: [PARAM][BR]Monitor only: [PARAM].
'''
@@ -530,7 +500,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmMultiSave", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Would you like to choose games to import from the official game list?[BR][BR]This require an active internet connection..
'''
@@ -539,7 +509,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmOfficialImport", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to restore the backup for [PARAM]? This will close the form..
'''
@@ -548,7 +518,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmRestore", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] is already up to date.[BR][BR]Would you like to restore this backup anyway?.
'''
@@ -557,7 +527,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ConfirmRestoreAnyway", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to A game with this exact name and process already exists..
'''
@@ -566,7 +536,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorGameDupe", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The selected game(s) have no backup data..
'''
@@ -575,7 +545,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorNoBackupData", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The backup file does not exist..
'''
@@ -584,7 +554,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorNoBackupExists", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to You must choose items to include in the backup, or choose to save the entire folder..
'''
@@ -593,7 +563,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorNoItems", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The restore path does not exist..
'''
@@ -602,7 +572,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorNoRestorePathExists", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] uses a relative path and the game path has not been set..
'''
@@ -611,7 +581,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorPathNotSet", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to You must enter a valid game name..
'''
@@ -620,7 +590,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorValidName", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to You must enter a valid process name..
'''
@@ -629,7 +599,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ErrorValidProcess", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Exclude.
'''
@@ -638,7 +608,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Exclude", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to E&xclude.
'''
@@ -647,7 +617,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ExcludeShortcut", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Executable.
'''
@@ -656,7 +626,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Executable", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game Manager.
'''
@@ -665,7 +635,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_FormName", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Icon.
'''
@@ -674,7 +644,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Icon", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Include.
'''
@@ -683,7 +653,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Include", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to In&clude.
'''
@@ -692,7 +662,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_IncludeShortcut", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Items....
'''
@@ -701,7 +671,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Items", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Items... ([PARAM]).
'''
@@ -710,7 +680,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_ItemsExist", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Company:.
'''
@@ -719,7 +689,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblCompany", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Current Backup:.
'''
@@ -728,7 +698,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblCurrentBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Backup Size:.
'''
@@ -737,7 +707,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblFileSize", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game Path:.
'''
@@ -746,7 +716,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblGamePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Hours:.
'''
@@ -755,7 +725,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblHours", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Icon:.
'''
@@ -764,7 +734,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblIcon", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Local Backup:.
'''
@@ -773,7 +743,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblLastBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Name:.
'''
@@ -782,7 +752,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblName", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Process:.
'''
@@ -791,7 +761,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblProcess", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Restore Path:.
'''
@@ -800,7 +770,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblRestorePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Save Path:.
'''
@@ -809,7 +779,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblSavePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Version:.
'''
@@ -818,7 +788,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_lblVersion", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Never.
'''
@@ -827,7 +797,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_Never", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to All.
'''
@@ -836,7 +806,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_optAllGames", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Backups Only.
'''
@@ -845,7 +815,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_optBackupData", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Custom.
'''
@@ -854,7 +824,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_optCustom", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to New Saves Pending.
'''
@@ -863,7 +833,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_optPendingRestores", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Out of Sync.
'''
@@ -872,7 +842,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_OutofSync", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Up to Date!.
'''
@@ -881,7 +851,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_UpToDate", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to XML.
'''
@@ -890,7 +860,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmGameManager_XML", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] Beta ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details..
'''
@@ -899,7 +869,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_About", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Backup in Progress....
'''
@@ -908,7 +878,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_BackupInProgress", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Cancel.
'''
@@ -917,7 +887,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_btnCancelOperation", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Hide &Log.
'''
@@ -926,7 +896,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_btnToggleLog_Hide", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Show &Log.
'''
@@ -935,7 +905,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_btnToggleLog_Show", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Choose icon for [PARAM].
'''
@@ -944,7 +914,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ChooseIcon", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Do you wish to backup data from [PARAM]?.
'''
@@ -953,7 +923,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ConfirmBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to This tool removes orphaned backup information from the local manifest based on the current backup folder. Data can become orphaned when backups are deleted by various computers that share the same backup folder on a cloud or network.[BR][BR]When alternating between different backup folders you should NOT use this tool.[BR][BR]Do you wish to proceed?.
'''
@@ -962,7 +932,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ConfirmManifestClean", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Do you wish to cancel the monitoring of [PARAM]?[BR][BR]Warning: When monitoring is cancelled, session time is NOT saved..
'''
@@ -971,7 +941,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ConfirmMonitorCancel", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to This will rebuild all databases and shrink them to an optimal size.[BR]This should only be used if your gbm.s3db files are becoming very large.[BR][BR]Do you wish to continue?.
'''
@@ -980,7 +950,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ConfirmRebuild", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Do you want to restart Game Backup Monitor as Administrator?.
'''
@@ -989,7 +959,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ConfirmRunAsAdmin", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] is a 64-bit game, GBM cannot detect the required information to save your backup..
'''
@@ -998,7 +968,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_Error64Backup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to 7-Zip was not found in the Game Backup Monitor utilities folder. The application cannot continue..
'''
@@ -1007,7 +977,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_Error7zip", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] is running as Administrator and GBM is not, GBM cannot detect the required information to save your backup..
'''
@@ -1016,7 +986,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorAdminBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] is running as Administrator and GBM is not.[BR]You cannot cancel monitoring at this time.[BR][BR]Run GBM as Administrator to prevent this issue..
'''
@@ -1025,7 +995,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorAdminDetect", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game Backup Monitor is already running as Administrator..
'''
@@ -1034,7 +1004,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorAlreadyAdmin", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to GBM is running from a new location, the Windows startup entry has been updated..
'''
@@ -1043,7 +1013,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorAppLocationChanged", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] backup was cancelled..
'''
@@ -1052,7 +1022,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorBackupCancel", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] backup was cancelled due to session length..
'''
@@ -1061,7 +1031,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorBackupSessionLength", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] backup was cancelled due to unknown path..
'''
@@ -1070,7 +1040,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorBackupUnknownPath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The following monitored game(s) contain a custom path variable that is not set.[BR][PARAM][BR][BR]You will encounter backup/restore errors with these games until the variables are set..
'''
@@ -1079,7 +1049,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorCustomVariable", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Your local GBM data (Version [PARAM]) is too new for your version of GBM (Version [PARAM]).[BR][BR]Please upgrade GBM or restore the database file appropriate for your version. The application cannot proceed..
'''
@@ -1088,7 +1058,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorDBVerLocal", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The GBM data (Version [PARAM]) in your backup folder is too new for your version of GBM (Version [PARAM])[BR][BR]All computers sharing a backup folder must use the same version of GBM. The application cannot proceed..
'''
@@ -1097,7 +1067,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorDBVerRemote", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Multiple possible 64-bit games have been detected, GBM cannot detect the path to identify your game or save your backup.[BR][BR]Please install the 64-bit version of GBM to detect and backup this game properly..
'''
@@ -1106,7 +1076,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorMulti64", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Multiple possible games have been detected running as Administrator and GBM is not, GBM cannot detect the path to identify your game or save your backup.[BR][BR]Please run GBM as Administrator to properly detect and backup this game..
'''
@@ -1115,7 +1085,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorMultiAdmin", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] uses a relative path and has never been detected on this computer..
'''
@@ -1124,7 +1094,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorRelativePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] restore was cancelled due to a restore path issue..
'''
@@ -1133,7 +1103,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorRestorePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to An error occured creating application settings folder. The application cannot proceed.[BR][BR][PARAM].
'''
@@ -1142,7 +1112,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ErrorSettingsFolder", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] (Executable Path).
'''
@@ -1151,7 +1121,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ExePath", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Are you sure you want to exit? Your games will no longer be monitored..
'''
@@ -1160,7 +1130,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_Exit", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] Detected.
'''
@@ -1169,7 +1139,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_GameDetected", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] has ended..
'''
@@ -1178,7 +1148,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_GameEnded", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game List ([PARAM]) Loaded..
'''
@@ -1187,7 +1157,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_GameListLoaded", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &File.
'''
@@ -1196,7 +1166,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFile", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Exit.
'''
@@ -1205,7 +1175,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFileExit", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Cancel &Monitoring.
'''
@@ -1214,7 +1184,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFileMonitor_Cancel", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Start &Monitoring.
'''
@@ -1223,7 +1193,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFileMonitor_Start", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Stop &Monitoring.
'''
@@ -1232,7 +1202,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFileMonitor_Stop", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Settings....
'''
@@ -1241,7 +1211,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonFileSettings", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Help.
'''
@@ -1250,7 +1220,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonHelp", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &About Game Backup Monitor.
'''
@@ -1259,7 +1229,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonHelpAbout", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Check for Updates....
'''
@@ -1268,7 +1238,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonHelpCheckForUpdates", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Online &Manual....
'''
@@ -1277,7 +1247,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonHelpManual", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Official Web Site....
'''
@@ -1286,7 +1256,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonHelpWebSite", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Setup.
'''
@@ -1295,7 +1265,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonSetup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Add Game &Wizard....
'''
@@ -1304,7 +1274,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonSetupAddWizard", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Custom &Path Variables....
'''
@@ -1313,7 +1283,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonSetupCustomVariables", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Game Manager....
'''
@@ -1322,7 +1292,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonSetupGameManager", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Tags....
'''
@@ -1331,7 +1301,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonSetupTags", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Monitor Status:.
'''
@@ -1340,7 +1310,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonStripStatusButton", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Click to toggle monitoring on or off..
'''
@@ -1349,7 +1319,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonStripStatusButtonToolTip", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Tools.
'''
@@ -1358,7 +1328,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonTools", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Clea&n Local Manifest.
'''
@@ -1367,7 +1337,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonToolsCleanMan", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to &Compact Databases.
'''
@@ -1376,7 +1346,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonToolsCompact", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Show / Hide.
'''
@@ -1385,7 +1355,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_gMonTrayShow", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Icon files (*.ico)|*.ico.
'''
@@ -1394,7 +1364,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_IconFilter", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Last Game: [PARAM].
'''
@@ -1403,7 +1373,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_LastGame", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Last Action:.
'''
@@ -1412,7 +1382,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_lblLastActionTitle", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Local Database Vacuum Completed: [PARAM] KB.
'''
@@ -1421,7 +1391,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_LocalCompactComplete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Local Database Vacuum Initialized: [PARAM] KB.
'''
@@ -1430,7 +1400,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_LocalCompactInit", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The local manifest is clean..
'''
@@ -1439,7 +1409,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ManifestAreadyClean", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] entry was removed from local manfiest..
'''
@@ -1448,7 +1418,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ManifestRemovedEntry", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] entries were removed from the local manifest..
'''
@@ -1457,7 +1427,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ManifestTotalRemoved", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to A manaul backup of [PARAM] was triggered..
'''
@@ -1466,7 +1436,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_ManualBackup", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The master game list has been changed by a program other than GBM..
'''
@@ -1475,7 +1445,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_MasterListChanged", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Monitoring of [PARAM] was cancelled..
'''
@@ -1484,7 +1454,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_MonitorCancel", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] monitoring ended..
'''
@@ -1493,7 +1463,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_MonitorEnded", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Multiple Games.
'''
@@ -1502,7 +1472,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_MultipleGames", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Multiple Games Detected.
'''
@@ -1511,7 +1481,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_MultipleGamesDetected", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] New Saves Pending.
'''
@@ -1520,7 +1490,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NewSaveNotificationMulti", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] New Save Pending.
'''
@@ -1529,7 +1499,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NewSaveNotificationSingle", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Game details are unavailable..
'''
@@ -1538,7 +1508,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NoDetails", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to No Game Detected.
'''
@@ -1547,7 +1517,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NoGameDetected", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to N/A.
'''
@@ -1556,7 +1526,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NotAvailable", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Not Scanning.
'''
@@ -1565,7 +1535,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_NotScanning", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Remote Database Vacuum Completed: [PARAM] KB.
'''
@@ -1574,7 +1544,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_RemoteCompactComplete", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Remote Database Vacuum Initialized: [PARAM] KB.
'''
@@ -1583,7 +1553,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_RemoteCompactInit", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Restore in progress....
'''
@@ -1592,7 +1562,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_RestoreInProgress", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to GBM is running with Administrator privileges..
'''
@@ -1601,7 +1571,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_RunningAsAdmin", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to GBM is running with normal privileges. Click to restart as Administrator..
'''
@@ -1610,7 +1580,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_RunningAsNormal", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] hours.
'''
@@ -1619,7 +1589,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_SessionHours", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to [PARAM] minutes.
'''
@@ -1628,7 +1598,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_SessionMinutes", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to the unidentified game.
'''
@@ -1637,7 +1607,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_UnknownGame", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to The unidentified game has ended..
'''
@@ -1646,7 +1616,7 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_UnknownGameEnded", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized string similar to Updated by [PARAM] on [PARAM].
'''
@@ -1655,104 +1625,134 @@ Namespace My.Resources
Return ResourceManager.GetString("frmMain_UpdatedBy", resourceCulture)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
'''
Friend ReadOnly Property GBM_Tray_Detected() As System.Drawing.Icon
Get
Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Detected", resourceCulture)
- Return CType(obj,System.Drawing.Icon)
+ Return CType(obj, System.Drawing.Icon)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
'''
Friend ReadOnly Property GBM_Tray_Ready() As System.Drawing.Icon
Get
Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Ready", resourceCulture)
- Return CType(obj,System.Drawing.Icon)
+ Return CType(obj, System.Drawing.Icon)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
'''
Friend ReadOnly Property GBM_Tray_Stopped() As System.Drawing.Icon
Get
Dim obj As Object = ResourceManager.GetObject("GBM_Tray_Stopped", resourceCulture)
- Return CType(obj,System.Drawing.Icon)
+ Return CType(obj, System.Drawing.Icon)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Inbox() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Admin() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Inbox", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Admin", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Ready() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Clock() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Ready", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Clock", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Searching() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Detected() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Searching", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Detected", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Stopped() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Inbox() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Stopped", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Inbox", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Unknown() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Ready() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Unknown", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Ready", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property User() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Searching() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("User", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Searching", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
-
+
'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''
- Friend ReadOnly Property Working() As System.Drawing.Bitmap
+ Friend ReadOnly Property Icon_Stopped() As System.Drawing.Bitmap
Get
- Dim obj As Object = ResourceManager.GetObject("Working", resourceCulture)
- Return CType(obj,System.Drawing.Bitmap)
+ Dim obj As Object = ResourceManager.GetObject("Icon_Stopped", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
+ End Get
+ End Property
+
+ '''
+ ''' Looks up a localized resource of type System.Drawing.Bitmap.
+ '''
+ Friend ReadOnly Property Icon_Unknown() As System.Drawing.Bitmap
+ Get
+ Dim obj As Object = ResourceManager.GetObject("Icon_Unknown", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
+ End Get
+ End Property
+
+ '''
+ ''' Looks up a localized resource of type System.Drawing.Bitmap.
+ '''
+ Friend ReadOnly Property Icon_User() As System.Drawing.Bitmap
+ Get
+ Dim obj As Object = ResourceManager.GetObject("Icon_User", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
+ End Get
+ End Property
+
+ '''
+ ''' Looks up a localized resource of type System.Drawing.Bitmap.
+ '''
+ Friend ReadOnly Property Icon_Working() As System.Drawing.Bitmap
+ Get
+ Dim obj As Object = ResourceManager.GetObject("Icon_Working", resourceCulture)
+ Return CType(obj, System.Drawing.Bitmap)
End Get
End Property
End Module
diff --git a/GBM/My Project/Resources.resx b/GBM/My Project/Resources.resx
index de2d5b2..e1ea825 100644
--- a/GBM/My Project/Resources.resx
+++ b/GBM/My Project/Resources.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
..\Resources\Admin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -163,10 +163,10 @@
Remote Database Vacuum Initialized: [PARAM] KB
-
+
..\Resources\Clock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Detected.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -337,25 +337,25 @@
..\Resources\GBM_Tray_Stopped.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Inbox.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Ready.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Searching.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Stopped.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Unknown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\User.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
..\Resources\Working.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a