Updates for issue #67
This commit is contained in:
+50
-20
@@ -55,7 +55,7 @@ Public Class frmMain
|
|||||||
Public hshScanList As Hashtable
|
Public hshScanList As Hashtable
|
||||||
Public oSettings As New mgrSettings
|
Public oSettings As New mgrSettings
|
||||||
|
|
||||||
Delegate Sub UpdateNotifierCallBack(ByVal iCount As Integer)
|
Delegate Sub UpdateNotifierCallBack(ByVal iCount As Integer, ByVal bRestored As Boolean)
|
||||||
Delegate Sub UpdateLogCallBack(ByVal sLogUpdate As String, ByVal bTrayUpdate As Boolean, ByVal objIcon As System.Windows.Forms.ToolTipIcon, ByVal bTimeStamp As Boolean)
|
Delegate Sub UpdateLogCallBack(ByVal sLogUpdate As String, ByVal bTrayUpdate As Boolean, ByVal objIcon As System.Windows.Forms.ToolTipIcon, ByVal bTimeStamp As Boolean)
|
||||||
Delegate Sub WorkingGameInfoCallBack(ByVal sTitle As String, ByVal sStatus1 As String, ByVal sStatus2 As String, ByVal sStatus3 As String)
|
Delegate Sub WorkingGameInfoCallBack(ByVal sTitle As String, ByVal sStatus1 As String, ByVal sStatus2 As String, ByVal sStatus3 As String)
|
||||||
Delegate Sub UpdateStatusCallBack(ByVal sStatus As String)
|
Delegate Sub UpdateStatusCallBack(ByVal sStatus As String)
|
||||||
@@ -331,17 +331,25 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub UpdateNotifier(ByVal iCount As Integer)
|
Private Sub UpdateNotifier(ByVal iCount As Integer, ByVal bRestored As Boolean)
|
||||||
'Thread Safe
|
'Thread Safe
|
||||||
If Me.InvokeRequired = True Then
|
If Me.InvokeRequired = True Then
|
||||||
Dim d As New UpdateNotifierCallBack(AddressOf UpdateNotifier)
|
Dim d As New UpdateNotifierCallBack(AddressOf UpdateNotifier)
|
||||||
Me.Invoke(d, New Object() {iCount})
|
Me.Invoke(d, New Object() {iCount, bRestored})
|
||||||
Else
|
Else
|
||||||
Dim sNotification As String
|
Dim sNotification As String
|
||||||
If iCount > 1 Then
|
If iCount > 1 Then
|
||||||
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationMulti, iCount)
|
If bRestored Then
|
||||||
|
sNotification = mgrCommon.FormatString(frmMain_RestoreNotificationMulti, iCount)
|
||||||
|
Else
|
||||||
|
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationMulti, iCount)
|
||||||
|
End If
|
||||||
Else
|
Else
|
||||||
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationSingle, iCount)
|
If bRestored Then
|
||||||
|
sNotification = mgrCommon.FormatString(frmMain_RestoreNotificationSingle, iCount)
|
||||||
|
Else
|
||||||
|
sNotification = mgrCommon.FormatString(frmMain_NewSaveNotificationSingle, iCount)
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
gMonNotification.Image = Icon_Inbox
|
gMonNotification.Image = Icon_Inbox
|
||||||
gMonTrayNotification.Image = Icon_Inbox
|
gMonTrayNotification.Image = Icon_Inbox
|
||||||
@@ -368,8 +376,10 @@ Public Class frmMain
|
|||||||
Dim sFileName As String
|
Dim sFileName As String
|
||||||
Dim sExtractPath As String
|
Dim sExtractPath As String
|
||||||
Dim bFinished As Boolean = True
|
Dim bFinished As Boolean = True
|
||||||
|
Dim hshRestore As Hashtable
|
||||||
|
Dim hshGames As Hashtable
|
||||||
|
|
||||||
'Bail out and shut down the timer if there's nothing to do
|
'Shut down the timer and bail out if there's nothing to do
|
||||||
If slRestoreData.Count = 0 Then
|
If slRestoreData.Count = 0 Then
|
||||||
tmRestoreCheck.Stop()
|
tmRestoreCheck.Stop()
|
||||||
tmRestoreCheck.Enabled = False
|
tmRestoreCheck.Enabled = False
|
||||||
@@ -391,18 +401,20 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
'Check if the restore location exists, if not we assume the game is not installed and should be auto-marked.
|
'Check if the restore location exists, if not we assume the game is not installed and should be auto-marked.
|
||||||
If oBackup.AbsolutePath Then
|
If oSettings.AutoMark Then
|
||||||
sExtractPath = oBackup.RestorePath
|
If oBackup.AbsolutePath Then
|
||||||
Else
|
sExtractPath = oBackup.RestorePath
|
||||||
sExtractPath = oBackup.RelativeRestorePath
|
|
||||||
End If
|
|
||||||
If Not IO.Directory.Exists(sExtractPath) Then
|
|
||||||
If mgrManifest.DoGlobalManifestCheck(de.Key, mgrSQLite.Database.Local) Then
|
|
||||||
mgrManifest.DoManifestUpdateByName(de.Value, mgrSQLite.Database.Local)
|
|
||||||
Else
|
Else
|
||||||
mgrManifest.DoManifestAdd(de.Value, mgrSQLite.Database.Local)
|
sExtractPath = oBackup.RelativeRestorePath
|
||||||
|
End If
|
||||||
|
If Not IO.Directory.Exists(sExtractPath) Then
|
||||||
|
If mgrManifest.DoGlobalManifestCheck(de.Key, mgrSQLite.Database.Local) Then
|
||||||
|
mgrManifest.DoManifestUpdateByName(de.Value, mgrSQLite.Database.Local)
|
||||||
|
Else
|
||||||
|
mgrManifest.DoManifestAdd(de.Value, mgrSQLite.Database.Local)
|
||||||
|
End If
|
||||||
|
sNotInstalled.Add(de.Key)
|
||||||
End If
|
End If
|
||||||
sNotInstalled.Add(de.Key)
|
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
@@ -418,9 +430,27 @@ Public Class frmMain
|
|||||||
UpdateLog(mgrCommon.FormatString(frmMain_AutoMarked, s), False, ToolTipIcon.Info, True)
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoMarked, s), False, ToolTipIcon.Info, True)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'When backup files are ready update the notifier
|
'Automatically restore backup files
|
||||||
If slRestoreData.Count > 0 Then
|
If oSettings.AutoRestore Then
|
||||||
UpdateNotifier(slRestoreData.Count)
|
If slRestoreData.Count > 0 Then
|
||||||
|
hshRestore = New Hashtable
|
||||||
|
For Each de As DictionaryEntry In slRestoreData
|
||||||
|
hshGames = mgrMonitorList.DoListGetbyName(de.Key)
|
||||||
|
If hshGames.Count = 1 Then
|
||||||
|
hshRestore.Add(hshGames(0), de.Value)
|
||||||
|
Else
|
||||||
|
UpdateLog(mgrCommon.FormatString(frmMain_AutoRestoreFailure, de.Key), False, ToolTipIcon.Info, True)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
RunRestore(hshRestore)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
'Update the notifier
|
||||||
|
If oSettings.RestoreOnLaunch Then
|
||||||
|
If slRestoreData.Count > 0 Then
|
||||||
|
UpdateNotifier(slRestoreData.Count, oSettings.AutoMark)
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'Shutdown if we are finished
|
'Shutdown if we are finished
|
||||||
@@ -846,7 +876,7 @@ Public Class frmMain
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub CheckForNewBackups()
|
Private Sub CheckForNewBackups()
|
||||||
If oSettings.RestoreOnLaunch Then
|
If oSettings.RestoreOnLaunch Or oSettings.AutoRestore Or oSettings.AutoMark Then
|
||||||
StartRestoreCheck()
|
StartRestoreCheck()
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|||||||
Generated
+246
-156
@@ -23,7 +23,6 @@ Partial Class frmSettings
|
|||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
Me.chkMonitorOnStartup = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkBackupConfirm = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
Me.grpStartup = New System.Windows.Forms.GroupBox()
|
||||||
Me.chkStartWindows = New System.Windows.Forms.CheckBox()
|
Me.chkStartWindows = New System.Windows.Forms.CheckBox()
|
||||||
Me.chkStartToTray = New System.Windows.Forms.CheckBox()
|
Me.chkStartToTray = New System.Windows.Forms.CheckBox()
|
||||||
@@ -39,12 +38,6 @@ Partial Class frmSettings
|
|||||||
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
Me.chkCreateFolder = New System.Windows.Forms.CheckBox()
|
||||||
Me.btnSave = New System.Windows.Forms.Button()
|
Me.btnSave = New System.Windows.Forms.Button()
|
||||||
Me.btnCancel = New System.Windows.Forms.Button()
|
Me.btnCancel = New System.Windows.Forms.Button()
|
||||||
Me.lblMinutes = New System.Windows.Forms.Label()
|
|
||||||
Me.nudSupressBackupThreshold = New System.Windows.Forms.NumericUpDown()
|
|
||||||
Me.chkSupressBackup = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkCheckSum = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkRestoreOnLaunch = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.chkOverwriteWarning = New System.Windows.Forms.CheckBox()
|
|
||||||
Me.grp7zGeneral = New System.Windows.Forms.GroupBox()
|
Me.grp7zGeneral = New System.Windows.Forms.GroupBox()
|
||||||
Me.cboCompression = New System.Windows.Forms.ComboBox()
|
Me.cboCompression = New System.Windows.Forms.ComboBox()
|
||||||
Me.lblCompression = New System.Windows.Forms.Label()
|
Me.lblCompression = New System.Windows.Forms.Label()
|
||||||
@@ -57,17 +50,28 @@ Partial Class frmSettings
|
|||||||
Me.lbl7zProduct = New System.Windows.Forms.Label()
|
Me.lbl7zProduct = New System.Windows.Forms.Label()
|
||||||
Me.btnDefaults = New System.Windows.Forms.Button()
|
Me.btnDefaults = New System.Windows.Forms.Button()
|
||||||
Me.pnlBackup = New System.Windows.Forms.Panel()
|
Me.pnlBackup = New System.Windows.Forms.Panel()
|
||||||
|
Me.lblMinutes = New System.Windows.Forms.Label()
|
||||||
|
Me.nudSupressBackupThreshold = New System.Windows.Forms.NumericUpDown()
|
||||||
|
Me.chkSupressBackup = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkBackupConfirm = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkCheckSum = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkOverwriteWarning = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.grpBackupHandling = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.chkAutoMark = New System.Windows.Forms.CheckBox()
|
||||||
Me.pnl7z = New System.Windows.Forms.Panel()
|
Me.pnl7z = New System.Windows.Forms.Panel()
|
||||||
Me.grp7zAdvanced = New System.Windows.Forms.GroupBox()
|
Me.grp7zAdvanced = New System.Windows.Forms.GroupBox()
|
||||||
Me.grp7zInformation = New System.Windows.Forms.GroupBox()
|
Me.grp7zInformation = New System.Windows.Forms.GroupBox()
|
||||||
Me.pnlGeneral = New System.Windows.Forms.Panel()
|
Me.pnlGeneral = New System.Windows.Forms.Panel()
|
||||||
Me.grpGameData = New System.Windows.Forms.GroupBox()
|
Me.grpGameData = New System.Windows.Forms.GroupBox()
|
||||||
Me.lstSettings = New System.Windows.Forms.ListBox()
|
Me.lstSettings = New System.Windows.Forms.ListBox()
|
||||||
|
Me.chkRestoreNotify = New System.Windows.Forms.CheckBox()
|
||||||
|
Me.chkAutoRestore = New System.Windows.Forms.CheckBox()
|
||||||
Me.grpStartup.SuspendLayout()
|
Me.grpStartup.SuspendLayout()
|
||||||
Me.grpFolderOptions.SuspendLayout()
|
Me.grpFolderOptions.SuspendLayout()
|
||||||
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.grp7zGeneral.SuspendLayout()
|
Me.grp7zGeneral.SuspendLayout()
|
||||||
Me.pnlBackup.SuspendLayout()
|
Me.pnlBackup.SuspendLayout()
|
||||||
|
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.grpBackupHandling.SuspendLayout()
|
||||||
Me.pnl7z.SuspendLayout()
|
Me.pnl7z.SuspendLayout()
|
||||||
Me.grp7zAdvanced.SuspendLayout()
|
Me.grp7zAdvanced.SuspendLayout()
|
||||||
Me.grp7zInformation.SuspendLayout()
|
Me.grp7zInformation.SuspendLayout()
|
||||||
@@ -78,31 +82,24 @@ Partial Class frmSettings
|
|||||||
'chkMonitorOnStartup
|
'chkMonitorOnStartup
|
||||||
'
|
'
|
||||||
Me.chkMonitorOnStartup.AutoSize = True
|
Me.chkMonitorOnStartup.AutoSize = True
|
||||||
Me.chkMonitorOnStartup.Location = New System.Drawing.Point(6, 65)
|
Me.chkMonitorOnStartup.Location = New System.Drawing.Point(8, 80)
|
||||||
|
Me.chkMonitorOnStartup.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkMonitorOnStartup.Name = "chkMonitorOnStartup"
|
Me.chkMonitorOnStartup.Name = "chkMonitorOnStartup"
|
||||||
Me.chkMonitorOnStartup.Size = New System.Drawing.Size(146, 17)
|
Me.chkMonitorOnStartup.Size = New System.Drawing.Size(192, 21)
|
||||||
Me.chkMonitorOnStartup.TabIndex = 2
|
Me.chkMonitorOnStartup.TabIndex = 2
|
||||||
Me.chkMonitorOnStartup.Text = "Start monitoring at launch"
|
Me.chkMonitorOnStartup.Text = "Start monitoring at launch"
|
||||||
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
Me.chkMonitorOnStartup.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'chkBackupConfirm
|
|
||||||
'
|
|
||||||
Me.chkBackupConfirm.AutoSize = True
|
|
||||||
Me.chkBackupConfirm.Location = New System.Drawing.Point(6, 88)
|
|
||||||
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
|
||||||
Me.chkBackupConfirm.Size = New System.Drawing.Size(160, 17)
|
|
||||||
Me.chkBackupConfirm.TabIndex = 1
|
|
||||||
Me.chkBackupConfirm.Text = "Disable backup confirmation"
|
|
||||||
Me.chkBackupConfirm.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'grpStartup
|
'grpStartup
|
||||||
'
|
'
|
||||||
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
Me.grpStartup.Controls.Add(Me.chkStartWindows)
|
||||||
Me.grpStartup.Controls.Add(Me.chkStartToTray)
|
Me.grpStartup.Controls.Add(Me.chkStartToTray)
|
||||||
Me.grpStartup.Controls.Add(Me.chkMonitorOnStartup)
|
Me.grpStartup.Controls.Add(Me.chkMonitorOnStartup)
|
||||||
Me.grpStartup.Location = New System.Drawing.Point(6, 12)
|
Me.grpStartup.Location = New System.Drawing.Point(8, 15)
|
||||||
|
Me.grpStartup.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grpStartup.Name = "grpStartup"
|
Me.grpStartup.Name = "grpStartup"
|
||||||
Me.grpStartup.Size = New System.Drawing.Size(354, 90)
|
Me.grpStartup.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grpStartup.Size = New System.Drawing.Size(472, 111)
|
||||||
Me.grpStartup.TabIndex = 0
|
Me.grpStartup.TabIndex = 0
|
||||||
Me.grpStartup.TabStop = False
|
Me.grpStartup.TabStop = False
|
||||||
Me.grpStartup.Text = "Startup"
|
Me.grpStartup.Text = "Startup"
|
||||||
@@ -110,9 +107,10 @@ Partial Class frmSettings
|
|||||||
'chkStartWindows
|
'chkStartWindows
|
||||||
'
|
'
|
||||||
Me.chkStartWindows.AutoSize = True
|
Me.chkStartWindows.AutoSize = True
|
||||||
Me.chkStartWindows.Location = New System.Drawing.Point(6, 19)
|
Me.chkStartWindows.Location = New System.Drawing.Point(8, 23)
|
||||||
|
Me.chkStartWindows.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkStartWindows.Name = "chkStartWindows"
|
Me.chkStartWindows.Name = "chkStartWindows"
|
||||||
Me.chkStartWindows.Size = New System.Drawing.Size(117, 17)
|
Me.chkStartWindows.Size = New System.Drawing.Size(148, 21)
|
||||||
Me.chkStartWindows.TabIndex = 0
|
Me.chkStartWindows.TabIndex = 0
|
||||||
Me.chkStartWindows.Text = "Start with Windows"
|
Me.chkStartWindows.Text = "Start with Windows"
|
||||||
Me.chkStartWindows.UseVisualStyleBackColor = True
|
Me.chkStartWindows.UseVisualStyleBackColor = True
|
||||||
@@ -120,9 +118,10 @@ Partial Class frmSettings
|
|||||||
'chkStartToTray
|
'chkStartToTray
|
||||||
'
|
'
|
||||||
Me.chkStartToTray.AutoSize = True
|
Me.chkStartToTray.AutoSize = True
|
||||||
Me.chkStartToTray.Location = New System.Drawing.Point(6, 42)
|
Me.chkStartToTray.Location = New System.Drawing.Point(8, 52)
|
||||||
|
Me.chkStartToTray.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkStartToTray.Name = "chkStartToTray"
|
Me.chkStartToTray.Name = "chkStartToTray"
|
||||||
Me.chkStartToTray.Size = New System.Drawing.Size(115, 17)
|
Me.chkStartToTray.Size = New System.Drawing.Size(152, 21)
|
||||||
Me.chkStartToTray.TabIndex = 1
|
Me.chkStartToTray.TabIndex = 1
|
||||||
Me.chkStartToTray.Text = "Start to system tray"
|
Me.chkStartToTray.Text = "Start to system tray"
|
||||||
Me.chkStartToTray.UseVisualStyleBackColor = True
|
Me.chkStartToTray.UseVisualStyleBackColor = True
|
||||||
@@ -130,18 +129,20 @@ Partial Class frmSettings
|
|||||||
'chkAutoSaveLog
|
'chkAutoSaveLog
|
||||||
'
|
'
|
||||||
Me.chkAutoSaveLog.AutoSize = True
|
Me.chkAutoSaveLog.AutoSize = True
|
||||||
Me.chkAutoSaveLog.Location = New System.Drawing.Point(6, 204)
|
Me.chkAutoSaveLog.Location = New System.Drawing.Point(8, 251)
|
||||||
|
Me.chkAutoSaveLog.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkAutoSaveLog.Name = "chkAutoSaveLog"
|
Me.chkAutoSaveLog.Name = "chkAutoSaveLog"
|
||||||
Me.chkAutoSaveLog.Size = New System.Drawing.Size(231, 17)
|
Me.chkAutoSaveLog.Size = New System.Drawing.Size(300, 21)
|
||||||
Me.chkAutoSaveLog.TabIndex = 7
|
Me.chkAutoSaveLog.TabIndex = 7
|
||||||
Me.chkAutoSaveLog.Text = "Autosave log when max length is exceeded"
|
Me.chkAutoSaveLog.Text = "Autosave log when max length is exceeded"
|
||||||
Me.chkAutoSaveLog.UseVisualStyleBackColor = True
|
Me.chkAutoSaveLog.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnOptionalFields
|
'btnOptionalFields
|
||||||
'
|
'
|
||||||
Me.btnOptionalFields.Location = New System.Drawing.Point(110, 38)
|
Me.btnOptionalFields.Location = New System.Drawing.Point(147, 47)
|
||||||
|
Me.btnOptionalFields.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btnOptionalFields.Name = "btnOptionalFields"
|
Me.btnOptionalFields.Name = "btnOptionalFields"
|
||||||
Me.btnOptionalFields.Size = New System.Drawing.Size(134, 23)
|
Me.btnOptionalFields.Size = New System.Drawing.Size(179, 28)
|
||||||
Me.btnOptionalFields.TabIndex = 6
|
Me.btnOptionalFields.TabIndex = 6
|
||||||
Me.btnOptionalFields.Text = "Choose &Optional Fields..."
|
Me.btnOptionalFields.Text = "Choose &Optional Fields..."
|
||||||
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
Me.btnOptionalFields.UseVisualStyleBackColor = True
|
||||||
@@ -149,9 +150,10 @@ Partial Class frmSettings
|
|||||||
'chkTimeTracking
|
'chkTimeTracking
|
||||||
'
|
'
|
||||||
Me.chkTimeTracking.AutoSize = True
|
Me.chkTimeTracking.AutoSize = True
|
||||||
Me.chkTimeTracking.Location = New System.Drawing.Point(6, 19)
|
Me.chkTimeTracking.Location = New System.Drawing.Point(8, 23)
|
||||||
|
Me.chkTimeTracking.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkTimeTracking.Name = "chkTimeTracking"
|
Me.chkTimeTracking.Name = "chkTimeTracking"
|
||||||
Me.chkTimeTracking.Size = New System.Drawing.Size(122, 17)
|
Me.chkTimeTracking.Size = New System.Drawing.Size(158, 21)
|
||||||
Me.chkTimeTracking.TabIndex = 4
|
Me.chkTimeTracking.TabIndex = 4
|
||||||
Me.chkTimeTracking.Text = "Enable time tracking"
|
Me.chkTimeTracking.Text = "Enable time tracking"
|
||||||
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
Me.chkTimeTracking.UseVisualStyleBackColor = True
|
||||||
@@ -159,9 +161,10 @@ Partial Class frmSettings
|
|||||||
'chkSync
|
'chkSync
|
||||||
'
|
'
|
||||||
Me.chkSync.AutoSize = True
|
Me.chkSync.AutoSize = True
|
||||||
Me.chkSync.Location = New System.Drawing.Point(6, 42)
|
Me.chkSync.Location = New System.Drawing.Point(8, 52)
|
||||||
|
Me.chkSync.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkSync.Name = "chkSync"
|
Me.chkSync.Name = "chkSync"
|
||||||
Me.chkSync.Size = New System.Drawing.Size(98, 17)
|
Me.chkSync.Size = New System.Drawing.Size(126, 21)
|
||||||
Me.chkSync.TabIndex = 5
|
Me.chkSync.TabIndex = 5
|
||||||
Me.chkSync.Text = "Enable syncing"
|
Me.chkSync.Text = "Enable syncing"
|
||||||
Me.chkSync.UseVisualStyleBackColor = True
|
Me.chkSync.UseVisualStyleBackColor = True
|
||||||
@@ -169,9 +172,10 @@ Partial Class frmSettings
|
|||||||
'chkShowDetectionTips
|
'chkShowDetectionTips
|
||||||
'
|
'
|
||||||
Me.chkShowDetectionTips.AutoSize = True
|
Me.chkShowDetectionTips.AutoSize = True
|
||||||
Me.chkShowDetectionTips.Location = New System.Drawing.Point(6, 181)
|
Me.chkShowDetectionTips.Location = New System.Drawing.Point(8, 223)
|
||||||
|
Me.chkShowDetectionTips.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkShowDetectionTips.Name = "chkShowDetectionTips"
|
Me.chkShowDetectionTips.Name = "chkShowDetectionTips"
|
||||||
Me.chkShowDetectionTips.Size = New System.Drawing.Size(159, 17)
|
Me.chkShowDetectionTips.Size = New System.Drawing.Size(205, 21)
|
||||||
Me.chkShowDetectionTips.TabIndex = 3
|
Me.chkShowDetectionTips.TabIndex = 3
|
||||||
Me.chkShowDetectionTips.Text = "Show detection notifications"
|
Me.chkShowDetectionTips.Text = "Show detection notifications"
|
||||||
Me.chkShowDetectionTips.UseVisualStyleBackColor = True
|
Me.chkShowDetectionTips.UseVisualStyleBackColor = True
|
||||||
@@ -182,18 +186,21 @@ Partial Class frmSettings
|
|||||||
Me.grpFolderOptions.Controls.Add(Me.lblBackupFolder)
|
Me.grpFolderOptions.Controls.Add(Me.lblBackupFolder)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.txtBackupFolder)
|
Me.grpFolderOptions.Controls.Add(Me.txtBackupFolder)
|
||||||
Me.grpFolderOptions.Controls.Add(Me.chkCreateFolder)
|
Me.grpFolderOptions.Controls.Add(Me.chkCreateFolder)
|
||||||
Me.grpFolderOptions.Location = New System.Drawing.Point(6, 12)
|
Me.grpFolderOptions.Location = New System.Drawing.Point(8, 15)
|
||||||
|
Me.grpFolderOptions.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grpFolderOptions.Name = "grpFolderOptions"
|
Me.grpFolderOptions.Name = "grpFolderOptions"
|
||||||
Me.grpFolderOptions.Size = New System.Drawing.Size(354, 70)
|
Me.grpFolderOptions.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grpFolderOptions.Size = New System.Drawing.Size(472, 86)
|
||||||
Me.grpFolderOptions.TabIndex = 1
|
Me.grpFolderOptions.TabIndex = 1
|
||||||
Me.grpFolderOptions.TabStop = False
|
Me.grpFolderOptions.TabStop = False
|
||||||
Me.grpFolderOptions.Text = "Folders"
|
Me.grpFolderOptions.Text = "Folders"
|
||||||
'
|
'
|
||||||
'btnBackupFolder
|
'btnBackupFolder
|
||||||
'
|
'
|
||||||
Me.btnBackupFolder.Location = New System.Drawing.Point(313, 17)
|
Me.btnBackupFolder.Location = New System.Drawing.Point(417, 21)
|
||||||
|
Me.btnBackupFolder.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btnBackupFolder.Name = "btnBackupFolder"
|
Me.btnBackupFolder.Name = "btnBackupFolder"
|
||||||
Me.btnBackupFolder.Size = New System.Drawing.Size(27, 20)
|
Me.btnBackupFolder.Size = New System.Drawing.Size(36, 25)
|
||||||
Me.btnBackupFolder.TabIndex = 2
|
Me.btnBackupFolder.TabIndex = 2
|
||||||
Me.btnBackupFolder.Text = "..."
|
Me.btnBackupFolder.Text = "..."
|
||||||
Me.btnBackupFolder.UseVisualStyleBackColor = True
|
Me.btnBackupFolder.UseVisualStyleBackColor = True
|
||||||
@@ -201,25 +208,28 @@ Partial Class frmSettings
|
|||||||
'lblBackupFolder
|
'lblBackupFolder
|
||||||
'
|
'
|
||||||
Me.lblBackupFolder.AutoSize = True
|
Me.lblBackupFolder.AutoSize = True
|
||||||
Me.lblBackupFolder.Location = New System.Drawing.Point(6, 20)
|
Me.lblBackupFolder.Location = New System.Drawing.Point(8, 25)
|
||||||
|
Me.lblBackupFolder.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lblBackupFolder.Name = "lblBackupFolder"
|
Me.lblBackupFolder.Name = "lblBackupFolder"
|
||||||
Me.lblBackupFolder.Size = New System.Drawing.Size(79, 13)
|
Me.lblBackupFolder.Size = New System.Drawing.Size(103, 17)
|
||||||
Me.lblBackupFolder.TabIndex = 0
|
Me.lblBackupFolder.TabIndex = 0
|
||||||
Me.lblBackupFolder.Text = "Backup Folder:"
|
Me.lblBackupFolder.Text = "Backup Folder:"
|
||||||
'
|
'
|
||||||
'txtBackupFolder
|
'txtBackupFolder
|
||||||
'
|
'
|
||||||
Me.txtBackupFolder.Location = New System.Drawing.Point(91, 17)
|
Me.txtBackupFolder.Location = New System.Drawing.Point(121, 21)
|
||||||
|
Me.txtBackupFolder.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.txtBackupFolder.Name = "txtBackupFolder"
|
Me.txtBackupFolder.Name = "txtBackupFolder"
|
||||||
Me.txtBackupFolder.Size = New System.Drawing.Size(216, 20)
|
Me.txtBackupFolder.Size = New System.Drawing.Size(287, 22)
|
||||||
Me.txtBackupFolder.TabIndex = 1
|
Me.txtBackupFolder.TabIndex = 1
|
||||||
'
|
'
|
||||||
'chkCreateFolder
|
'chkCreateFolder
|
||||||
'
|
'
|
||||||
Me.chkCreateFolder.AutoSize = True
|
Me.chkCreateFolder.AutoSize = True
|
||||||
Me.chkCreateFolder.Location = New System.Drawing.Point(9, 43)
|
Me.chkCreateFolder.Location = New System.Drawing.Point(12, 53)
|
||||||
|
Me.chkCreateFolder.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.chkCreateFolder.Name = "chkCreateFolder"
|
Me.chkCreateFolder.Name = "chkCreateFolder"
|
||||||
Me.chkCreateFolder.Size = New System.Drawing.Size(186, 17)
|
Me.chkCreateFolder.Size = New System.Drawing.Size(247, 21)
|
||||||
Me.chkCreateFolder.TabIndex = 3
|
Me.chkCreateFolder.TabIndex = 3
|
||||||
Me.chkCreateFolder.Text = "Create a sub-folder for each game"
|
Me.chkCreateFolder.Text = "Create a sub-folder for each game"
|
||||||
Me.chkCreateFolder.UseVisualStyleBackColor = True
|
Me.chkCreateFolder.UseVisualStyleBackColor = True
|
||||||
@@ -227,9 +237,10 @@ Partial Class frmSettings
|
|||||||
'btnSave
|
'btnSave
|
||||||
'
|
'
|
||||||
Me.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK
|
Me.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK
|
||||||
Me.btnSave.Location = New System.Drawing.Point(384, 321)
|
Me.btnSave.Location = New System.Drawing.Point(512, 395)
|
||||||
|
Me.btnSave.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btnSave.Name = "btnSave"
|
Me.btnSave.Name = "btnSave"
|
||||||
Me.btnSave.Size = New System.Drawing.Size(75, 23)
|
Me.btnSave.Size = New System.Drawing.Size(100, 28)
|
||||||
Me.btnSave.TabIndex = 5
|
Me.btnSave.TabIndex = 5
|
||||||
Me.btnSave.Text = "&Save"
|
Me.btnSave.Text = "&Save"
|
||||||
Me.btnSave.UseVisualStyleBackColor = True
|
Me.btnSave.UseVisualStyleBackColor = True
|
||||||
@@ -237,77 +248,23 @@ Partial Class frmSettings
|
|||||||
'btnCancel
|
'btnCancel
|
||||||
'
|
'
|
||||||
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
||||||
Me.btnCancel.Location = New System.Drawing.Point(465, 321)
|
Me.btnCancel.Location = New System.Drawing.Point(620, 395)
|
||||||
|
Me.btnCancel.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btnCancel.Name = "btnCancel"
|
Me.btnCancel.Name = "btnCancel"
|
||||||
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
Me.btnCancel.Size = New System.Drawing.Size(100, 28)
|
||||||
Me.btnCancel.TabIndex = 6
|
Me.btnCancel.TabIndex = 6
|
||||||
Me.btnCancel.Text = "&Cancel"
|
Me.btnCancel.Text = "&Cancel"
|
||||||
Me.btnCancel.UseVisualStyleBackColor = True
|
Me.btnCancel.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'lblMinutes
|
|
||||||
'
|
|
||||||
Me.lblMinutes.AutoSize = True
|
|
||||||
Me.lblMinutes.Location = New System.Drawing.Point(286, 181)
|
|
||||||
Me.lblMinutes.Name = "lblMinutes"
|
|
||||||
Me.lblMinutes.Size = New System.Drawing.Size(43, 13)
|
|
||||||
Me.lblMinutes.TabIndex = 7
|
|
||||||
Me.lblMinutes.Text = "minutes"
|
|
||||||
'
|
|
||||||
'nudSupressBackupThreshold
|
|
||||||
'
|
|
||||||
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(229, 179)
|
|
||||||
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
|
||||||
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
|
||||||
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(51, 20)
|
|
||||||
Me.nudSupressBackupThreshold.TabIndex = 6
|
|
||||||
'
|
|
||||||
'chkSupressBackup
|
|
||||||
'
|
|
||||||
Me.chkSupressBackup.AutoSize = True
|
|
||||||
Me.chkSupressBackup.Location = New System.Drawing.Point(6, 180)
|
|
||||||
Me.chkSupressBackup.Name = "chkSupressBackup"
|
|
||||||
Me.chkSupressBackup.Size = New System.Drawing.Size(217, 17)
|
|
||||||
Me.chkSupressBackup.TabIndex = 5
|
|
||||||
Me.chkSupressBackup.Text = "Backup only when session time exceeds"
|
|
||||||
Me.chkSupressBackup.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkCheckSum
|
|
||||||
'
|
|
||||||
Me.chkCheckSum.AutoSize = True
|
|
||||||
Me.chkCheckSum.Location = New System.Drawing.Point(6, 134)
|
|
||||||
Me.chkCheckSum.Name = "chkCheckSum"
|
|
||||||
Me.chkCheckSum.Size = New System.Drawing.Size(195, 17)
|
|
||||||
Me.chkCheckSum.TabIndex = 3
|
|
||||||
Me.chkCheckSum.Text = "Verify backup files with a checksum"
|
|
||||||
Me.chkCheckSum.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkRestoreOnLaunch
|
|
||||||
'
|
|
||||||
Me.chkRestoreOnLaunch.AutoSize = True
|
|
||||||
Me.chkRestoreOnLaunch.Location = New System.Drawing.Point(6, 157)
|
|
||||||
Me.chkRestoreOnLaunch.Name = "chkRestoreOnLaunch"
|
|
||||||
Me.chkRestoreOnLaunch.Size = New System.Drawing.Size(257, 17)
|
|
||||||
Me.chkRestoreOnLaunch.TabIndex = 4
|
|
||||||
Me.chkRestoreOnLaunch.Text = "Notify when there are new backup files to restore"
|
|
||||||
Me.chkRestoreOnLaunch.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'chkOverwriteWarning
|
|
||||||
'
|
|
||||||
Me.chkOverwriteWarning.AutoSize = True
|
|
||||||
Me.chkOverwriteWarning.Location = New System.Drawing.Point(6, 111)
|
|
||||||
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
|
||||||
Me.chkOverwriteWarning.Size = New System.Drawing.Size(139, 17)
|
|
||||||
Me.chkOverwriteWarning.TabIndex = 2
|
|
||||||
Me.chkOverwriteWarning.Text = "Show overwrite warning"
|
|
||||||
Me.chkOverwriteWarning.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'grp7zGeneral
|
'grp7zGeneral
|
||||||
'
|
'
|
||||||
Me.grp7zGeneral.Controls.Add(Me.cboCompression)
|
Me.grp7zGeneral.Controls.Add(Me.cboCompression)
|
||||||
Me.grp7zGeneral.Controls.Add(Me.lblCompression)
|
Me.grp7zGeneral.Controls.Add(Me.lblCompression)
|
||||||
Me.grp7zGeneral.Location = New System.Drawing.Point(6, 12)
|
Me.grp7zGeneral.Location = New System.Drawing.Point(8, 15)
|
||||||
|
Me.grp7zGeneral.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grp7zGeneral.Name = "grp7zGeneral"
|
Me.grp7zGeneral.Name = "grp7zGeneral"
|
||||||
Me.grp7zGeneral.Size = New System.Drawing.Size(354, 50)
|
Me.grp7zGeneral.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grp7zGeneral.Size = New System.Drawing.Size(472, 62)
|
||||||
Me.grp7zGeneral.TabIndex = 0
|
Me.grp7zGeneral.TabIndex = 0
|
||||||
Me.grp7zGeneral.TabStop = False
|
Me.grp7zGeneral.TabStop = False
|
||||||
Me.grp7zGeneral.Text = "General"
|
Me.grp7zGeneral.Text = "General"
|
||||||
@@ -316,84 +273,94 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.cboCompression.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
Me.cboCompression.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||||
Me.cboCompression.FormattingEnabled = True
|
Me.cboCompression.FormattingEnabled = True
|
||||||
Me.cboCompression.Location = New System.Drawing.Point(110, 17)
|
Me.cboCompression.Location = New System.Drawing.Point(147, 21)
|
||||||
|
Me.cboCompression.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.cboCompression.Name = "cboCompression"
|
Me.cboCompression.Name = "cboCompression"
|
||||||
Me.cboCompression.Size = New System.Drawing.Size(238, 21)
|
Me.cboCompression.Size = New System.Drawing.Size(316, 24)
|
||||||
Me.cboCompression.TabIndex = 1
|
Me.cboCompression.TabIndex = 1
|
||||||
'
|
'
|
||||||
'lblCompression
|
'lblCompression
|
||||||
'
|
'
|
||||||
Me.lblCompression.AutoSize = True
|
Me.lblCompression.AutoSize = True
|
||||||
Me.lblCompression.Location = New System.Drawing.Point(6, 20)
|
Me.lblCompression.Location = New System.Drawing.Point(8, 25)
|
||||||
|
Me.lblCompression.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lblCompression.Name = "lblCompression"
|
Me.lblCompression.Name = "lblCompression"
|
||||||
Me.lblCompression.Size = New System.Drawing.Size(70, 13)
|
Me.lblCompression.Size = New System.Drawing.Size(94, 17)
|
||||||
Me.lblCompression.TabIndex = 0
|
Me.lblCompression.TabIndex = 0
|
||||||
Me.lblCompression.Text = "Compression:"
|
Me.lblCompression.Text = "Compression:"
|
||||||
'
|
'
|
||||||
'btn7zLocation
|
'btn7zLocation
|
||||||
'
|
'
|
||||||
Me.btn7zLocation.Location = New System.Drawing.Point(313, 41)
|
Me.btn7zLocation.Location = New System.Drawing.Point(417, 50)
|
||||||
|
Me.btn7zLocation.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btn7zLocation.Name = "btn7zLocation"
|
Me.btn7zLocation.Name = "btn7zLocation"
|
||||||
Me.btn7zLocation.Size = New System.Drawing.Size(27, 20)
|
Me.btn7zLocation.Size = New System.Drawing.Size(36, 25)
|
||||||
Me.btn7zLocation.TabIndex = 5
|
Me.btn7zLocation.TabIndex = 5
|
||||||
Me.btn7zLocation.Text = "..."
|
Me.btn7zLocation.Text = "..."
|
||||||
Me.btn7zLocation.UseVisualStyleBackColor = True
|
Me.btn7zLocation.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'txt7zLocation
|
'txt7zLocation
|
||||||
'
|
'
|
||||||
Me.txt7zLocation.Location = New System.Drawing.Point(110, 41)
|
Me.txt7zLocation.Location = New System.Drawing.Point(147, 50)
|
||||||
|
Me.txt7zLocation.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.txt7zLocation.Name = "txt7zLocation"
|
Me.txt7zLocation.Name = "txt7zLocation"
|
||||||
Me.txt7zLocation.Size = New System.Drawing.Size(197, 20)
|
Me.txt7zLocation.Size = New System.Drawing.Size(261, 22)
|
||||||
Me.txt7zLocation.TabIndex = 4
|
Me.txt7zLocation.TabIndex = 4
|
||||||
'
|
'
|
||||||
'lblLocation
|
'lblLocation
|
||||||
'
|
'
|
||||||
Me.lblLocation.AutoSize = True
|
Me.lblLocation.AutoSize = True
|
||||||
Me.lblLocation.Location = New System.Drawing.Point(6, 44)
|
Me.lblLocation.Location = New System.Drawing.Point(8, 54)
|
||||||
|
Me.lblLocation.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lblLocation.Name = "lblLocation"
|
Me.lblLocation.Name = "lblLocation"
|
||||||
Me.lblLocation.Size = New System.Drawing.Size(89, 13)
|
Me.lblLocation.Size = New System.Drawing.Size(117, 17)
|
||||||
Me.lblLocation.TabIndex = 4
|
Me.lblLocation.TabIndex = 4
|
||||||
Me.lblLocation.Text = "Custom Location:"
|
Me.lblLocation.Text = "Custom Location:"
|
||||||
'
|
'
|
||||||
'txt7zArguments
|
'txt7zArguments
|
||||||
'
|
'
|
||||||
Me.txt7zArguments.Location = New System.Drawing.Point(110, 15)
|
Me.txt7zArguments.Location = New System.Drawing.Point(147, 18)
|
||||||
|
Me.txt7zArguments.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.txt7zArguments.Name = "txt7zArguments"
|
Me.txt7zArguments.Name = "txt7zArguments"
|
||||||
Me.txt7zArguments.Size = New System.Drawing.Size(238, 20)
|
Me.txt7zArguments.Size = New System.Drawing.Size(316, 22)
|
||||||
Me.txt7zArguments.TabIndex = 3
|
Me.txt7zArguments.TabIndex = 3
|
||||||
'
|
'
|
||||||
'lblArguments
|
'lblArguments
|
||||||
'
|
'
|
||||||
Me.lblArguments.AutoSize = True
|
Me.lblArguments.AutoSize = True
|
||||||
Me.lblArguments.Location = New System.Drawing.Point(6, 20)
|
Me.lblArguments.Location = New System.Drawing.Point(8, 25)
|
||||||
|
Me.lblArguments.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lblArguments.Name = "lblArguments"
|
Me.lblArguments.Name = "lblArguments"
|
||||||
Me.lblArguments.Size = New System.Drawing.Size(98, 13)
|
Me.lblArguments.Size = New System.Drawing.Size(131, 17)
|
||||||
Me.lblArguments.TabIndex = 2
|
Me.lblArguments.TabIndex = 2
|
||||||
Me.lblArguments.Text = "Custom Arguments:"
|
Me.lblArguments.Text = "Custom Arguments:"
|
||||||
'
|
'
|
||||||
'lbl7zCopyright
|
'lbl7zCopyright
|
||||||
'
|
'
|
||||||
Me.lbl7zCopyright.AutoEllipsis = True
|
Me.lbl7zCopyright.AutoEllipsis = True
|
||||||
Me.lbl7zCopyright.Location = New System.Drawing.Point(9, 34)
|
Me.lbl7zCopyright.Location = New System.Drawing.Point(12, 42)
|
||||||
|
Me.lbl7zCopyright.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lbl7zCopyright.Name = "lbl7zCopyright"
|
Me.lbl7zCopyright.Name = "lbl7zCopyright"
|
||||||
Me.lbl7zCopyright.Size = New System.Drawing.Size(339, 17)
|
Me.lbl7zCopyright.Size = New System.Drawing.Size(452, 21)
|
||||||
Me.lbl7zCopyright.TabIndex = 8
|
Me.lbl7zCopyright.TabIndex = 8
|
||||||
Me.lbl7zCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
Me.lbl7zCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
'
|
'
|
||||||
'lbl7zProduct
|
'lbl7zProduct
|
||||||
'
|
'
|
||||||
Me.lbl7zProduct.AutoEllipsis = True
|
Me.lbl7zProduct.AutoEllipsis = True
|
||||||
Me.lbl7zProduct.Location = New System.Drawing.Point(9, 17)
|
Me.lbl7zProduct.Location = New System.Drawing.Point(12, 21)
|
||||||
|
Me.lbl7zProduct.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
Me.lbl7zProduct.Name = "lbl7zProduct"
|
Me.lbl7zProduct.Name = "lbl7zProduct"
|
||||||
Me.lbl7zProduct.Size = New System.Drawing.Size(339, 17)
|
Me.lbl7zProduct.Size = New System.Drawing.Size(452, 21)
|
||||||
Me.lbl7zProduct.TabIndex = 7
|
Me.lbl7zProduct.TabIndex = 7
|
||||||
Me.lbl7zProduct.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
Me.lbl7zProduct.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
'
|
'
|
||||||
'btnDefaults
|
'btnDefaults
|
||||||
'
|
'
|
||||||
Me.btnDefaults.Location = New System.Drawing.Point(12, 321)
|
Me.btnDefaults.Location = New System.Drawing.Point(16, 395)
|
||||||
|
Me.btnDefaults.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.btnDefaults.Name = "btnDefaults"
|
Me.btnDefaults.Name = "btnDefaults"
|
||||||
Me.btnDefaults.Size = New System.Drawing.Size(110, 23)
|
Me.btnDefaults.Size = New System.Drawing.Size(147, 28)
|
||||||
Me.btnDefaults.TabIndex = 4
|
Me.btnDefaults.TabIndex = 4
|
||||||
Me.btnDefaults.Text = "Set &Defaults"
|
Me.btnDefaults.Text = "Set &Defaults"
|
||||||
Me.btnDefaults.UseVisualStyleBackColor = True
|
Me.btnDefaults.UseVisualStyleBackColor = True
|
||||||
@@ -402,25 +369,113 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.pnlBackup.Controls.Add(Me.lblMinutes)
|
Me.pnlBackup.Controls.Add(Me.lblMinutes)
|
||||||
Me.pnlBackup.Controls.Add(Me.nudSupressBackupThreshold)
|
Me.pnlBackup.Controls.Add(Me.nudSupressBackupThreshold)
|
||||||
Me.pnlBackup.Controls.Add(Me.grpFolderOptions)
|
|
||||||
Me.pnlBackup.Controls.Add(Me.chkSupressBackup)
|
Me.pnlBackup.Controls.Add(Me.chkSupressBackup)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkBackupConfirm)
|
Me.pnlBackup.Controls.Add(Me.chkBackupConfirm)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkCheckSum)
|
Me.pnlBackup.Controls.Add(Me.chkCheckSum)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkOverwriteWarning)
|
Me.pnlBackup.Controls.Add(Me.chkOverwriteWarning)
|
||||||
Me.pnlBackup.Controls.Add(Me.chkRestoreOnLaunch)
|
Me.pnlBackup.Controls.Add(Me.grpBackupHandling)
|
||||||
Me.pnlBackup.Location = New System.Drawing.Point(180, 0)
|
Me.pnlBackup.Controls.Add(Me.grpFolderOptions)
|
||||||
|
Me.pnlBackup.Location = New System.Drawing.Point(240, 0)
|
||||||
|
Me.pnlBackup.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.pnlBackup.Name = "pnlBackup"
|
Me.pnlBackup.Name = "pnlBackup"
|
||||||
Me.pnlBackup.Size = New System.Drawing.Size(367, 314)
|
Me.pnlBackup.Size = New System.Drawing.Size(489, 386)
|
||||||
Me.pnlBackup.TabIndex = 3
|
Me.pnlBackup.TabIndex = 3
|
||||||
'
|
'
|
||||||
|
'lblMinutes
|
||||||
|
'
|
||||||
|
Me.lblMinutes.AutoSize = True
|
||||||
|
Me.lblMinutes.Location = New System.Drawing.Point(381, 309)
|
||||||
|
Me.lblMinutes.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
||||||
|
Me.lblMinutes.Name = "lblMinutes"
|
||||||
|
Me.lblMinutes.Size = New System.Drawing.Size(57, 17)
|
||||||
|
Me.lblMinutes.TabIndex = 14
|
||||||
|
Me.lblMinutes.Text = "minutes"
|
||||||
|
'
|
||||||
|
'nudSupressBackupThreshold
|
||||||
|
'
|
||||||
|
Me.nudSupressBackupThreshold.Location = New System.Drawing.Point(305, 306)
|
||||||
|
Me.nudSupressBackupThreshold.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.nudSupressBackupThreshold.Maximum = New Decimal(New Integer() {999, 0, 0, 0})
|
||||||
|
Me.nudSupressBackupThreshold.Name = "nudSupressBackupThreshold"
|
||||||
|
Me.nudSupressBackupThreshold.Size = New System.Drawing.Size(68, 22)
|
||||||
|
Me.nudSupressBackupThreshold.TabIndex = 13
|
||||||
|
'
|
||||||
|
'chkSupressBackup
|
||||||
|
'
|
||||||
|
Me.chkSupressBackup.AutoSize = True
|
||||||
|
Me.chkSupressBackup.Location = New System.Drawing.Point(8, 308)
|
||||||
|
Me.chkSupressBackup.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.chkSupressBackup.Name = "chkSupressBackup"
|
||||||
|
Me.chkSupressBackup.Size = New System.Drawing.Size(282, 21)
|
||||||
|
Me.chkSupressBackup.TabIndex = 12
|
||||||
|
Me.chkSupressBackup.Text = "Backup only when session time exceeds"
|
||||||
|
Me.chkSupressBackup.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkBackupConfirm
|
||||||
|
'
|
||||||
|
Me.chkBackupConfirm.AutoSize = True
|
||||||
|
Me.chkBackupConfirm.Location = New System.Drawing.Point(8, 222)
|
||||||
|
Me.chkBackupConfirm.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.chkBackupConfirm.Name = "chkBackupConfirm"
|
||||||
|
Me.chkBackupConfirm.Size = New System.Drawing.Size(208, 21)
|
||||||
|
Me.chkBackupConfirm.TabIndex = 9
|
||||||
|
Me.chkBackupConfirm.Text = "Disable backup confirmation"
|
||||||
|
Me.chkBackupConfirm.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkCheckSum
|
||||||
|
'
|
||||||
|
Me.chkCheckSum.AutoSize = True
|
||||||
|
Me.chkCheckSum.Location = New System.Drawing.Point(8, 279)
|
||||||
|
Me.chkCheckSum.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.chkCheckSum.Name = "chkCheckSum"
|
||||||
|
Me.chkCheckSum.Size = New System.Drawing.Size(252, 21)
|
||||||
|
Me.chkCheckSum.TabIndex = 11
|
||||||
|
Me.chkCheckSum.Text = "Verify backup files with a checksum"
|
||||||
|
Me.chkCheckSum.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkOverwriteWarning
|
||||||
|
'
|
||||||
|
Me.chkOverwriteWarning.AutoSize = True
|
||||||
|
Me.chkOverwriteWarning.Location = New System.Drawing.Point(8, 251)
|
||||||
|
Me.chkOverwriteWarning.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.chkOverwriteWarning.Name = "chkOverwriteWarning"
|
||||||
|
Me.chkOverwriteWarning.Size = New System.Drawing.Size(178, 21)
|
||||||
|
Me.chkOverwriteWarning.TabIndex = 10
|
||||||
|
Me.chkOverwriteWarning.Text = "Show overwrite warning"
|
||||||
|
Me.chkOverwriteWarning.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'grpBackupHandling
|
||||||
|
'
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoRestore)
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkRestoreNotify)
|
||||||
|
Me.grpBackupHandling.Controls.Add(Me.chkAutoMark)
|
||||||
|
Me.grpBackupHandling.Location = New System.Drawing.Point(8, 108)
|
||||||
|
Me.grpBackupHandling.Name = "grpBackupHandling"
|
||||||
|
Me.grpBackupHandling.Size = New System.Drawing.Size(472, 107)
|
||||||
|
Me.grpBackupHandling.TabIndex = 8
|
||||||
|
Me.grpBackupHandling.TabStop = False
|
||||||
|
Me.grpBackupHandling.Text = "Backup Handling"
|
||||||
|
'
|
||||||
|
'chkAutoMark
|
||||||
|
'
|
||||||
|
Me.chkAutoMark.AutoSize = True
|
||||||
|
Me.chkAutoMark.Location = New System.Drawing.Point(11, 78)
|
||||||
|
Me.chkAutoMark.Margin = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.chkAutoMark.Name = "chkAutoMark"
|
||||||
|
Me.chkAutoMark.Size = New System.Drawing.Size(395, 21)
|
||||||
|
Me.chkAutoMark.TabIndex = 5
|
||||||
|
Me.chkAutoMark.Text = "Automatically mark backups as restored when appropriate"
|
||||||
|
Me.chkAutoMark.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'pnl7z
|
'pnl7z
|
||||||
'
|
'
|
||||||
Me.pnl7z.Controls.Add(Me.grp7zAdvanced)
|
Me.pnl7z.Controls.Add(Me.grp7zAdvanced)
|
||||||
Me.pnl7z.Controls.Add(Me.grp7zInformation)
|
Me.pnl7z.Controls.Add(Me.grp7zInformation)
|
||||||
Me.pnl7z.Controls.Add(Me.grp7zGeneral)
|
Me.pnl7z.Controls.Add(Me.grp7zGeneral)
|
||||||
Me.pnl7z.Location = New System.Drawing.Point(180, 0)
|
Me.pnl7z.Location = New System.Drawing.Point(240, 0)
|
||||||
|
Me.pnl7z.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.pnl7z.Name = "pnl7z"
|
Me.pnl7z.Name = "pnl7z"
|
||||||
Me.pnl7z.Size = New System.Drawing.Size(367, 314)
|
Me.pnl7z.Size = New System.Drawing.Size(489, 386)
|
||||||
Me.pnl7z.TabIndex = 2
|
Me.pnl7z.TabIndex = 2
|
||||||
'
|
'
|
||||||
'grp7zAdvanced
|
'grp7zAdvanced
|
||||||
@@ -430,9 +485,11 @@ Partial Class frmSettings
|
|||||||
Me.grp7zAdvanced.Controls.Add(Me.txt7zLocation)
|
Me.grp7zAdvanced.Controls.Add(Me.txt7zLocation)
|
||||||
Me.grp7zAdvanced.Controls.Add(Me.txt7zArguments)
|
Me.grp7zAdvanced.Controls.Add(Me.txt7zArguments)
|
||||||
Me.grp7zAdvanced.Controls.Add(Me.lblLocation)
|
Me.grp7zAdvanced.Controls.Add(Me.lblLocation)
|
||||||
Me.grp7zAdvanced.Location = New System.Drawing.Point(6, 68)
|
Me.grp7zAdvanced.Location = New System.Drawing.Point(8, 84)
|
||||||
|
Me.grp7zAdvanced.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grp7zAdvanced.Name = "grp7zAdvanced"
|
Me.grp7zAdvanced.Name = "grp7zAdvanced"
|
||||||
Me.grp7zAdvanced.Size = New System.Drawing.Size(354, 73)
|
Me.grp7zAdvanced.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grp7zAdvanced.Size = New System.Drawing.Size(472, 90)
|
||||||
Me.grp7zAdvanced.TabIndex = 2
|
Me.grp7zAdvanced.TabIndex = 2
|
||||||
Me.grp7zAdvanced.TabStop = False
|
Me.grp7zAdvanced.TabStop = False
|
||||||
Me.grp7zAdvanced.Text = "Advanced"
|
Me.grp7zAdvanced.Text = "Advanced"
|
||||||
@@ -441,9 +498,11 @@ Partial Class frmSettings
|
|||||||
'
|
'
|
||||||
Me.grp7zInformation.Controls.Add(Me.lbl7zProduct)
|
Me.grp7zInformation.Controls.Add(Me.lbl7zProduct)
|
||||||
Me.grp7zInformation.Controls.Add(Me.lbl7zCopyright)
|
Me.grp7zInformation.Controls.Add(Me.lbl7zCopyright)
|
||||||
Me.grp7zInformation.Location = New System.Drawing.Point(6, 146)
|
Me.grp7zInformation.Location = New System.Drawing.Point(8, 180)
|
||||||
|
Me.grp7zInformation.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grp7zInformation.Name = "grp7zInformation"
|
Me.grp7zInformation.Name = "grp7zInformation"
|
||||||
Me.grp7zInformation.Size = New System.Drawing.Size(354, 63)
|
Me.grp7zInformation.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grp7zInformation.Size = New System.Drawing.Size(472, 78)
|
||||||
Me.grp7zInformation.TabIndex = 1
|
Me.grp7zInformation.TabIndex = 1
|
||||||
Me.grp7zInformation.TabStop = False
|
Me.grp7zInformation.TabStop = False
|
||||||
Me.grp7zInformation.Text = "Utility Information"
|
Me.grp7zInformation.Text = "Utility Information"
|
||||||
@@ -454,9 +513,10 @@ Partial Class frmSettings
|
|||||||
Me.pnlGeneral.Controls.Add(Me.grpGameData)
|
Me.pnlGeneral.Controls.Add(Me.grpGameData)
|
||||||
Me.pnlGeneral.Controls.Add(Me.chkShowDetectionTips)
|
Me.pnlGeneral.Controls.Add(Me.chkShowDetectionTips)
|
||||||
Me.pnlGeneral.Controls.Add(Me.grpStartup)
|
Me.pnlGeneral.Controls.Add(Me.grpStartup)
|
||||||
Me.pnlGeneral.Location = New System.Drawing.Point(180, 0)
|
Me.pnlGeneral.Location = New System.Drawing.Point(240, 0)
|
||||||
|
Me.pnlGeneral.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.pnlGeneral.Name = "pnlGeneral"
|
Me.pnlGeneral.Name = "pnlGeneral"
|
||||||
Me.pnlGeneral.Size = New System.Drawing.Size(367, 314)
|
Me.pnlGeneral.Size = New System.Drawing.Size(489, 386)
|
||||||
Me.pnlGeneral.TabIndex = 1
|
Me.pnlGeneral.TabIndex = 1
|
||||||
'
|
'
|
||||||
'grpGameData
|
'grpGameData
|
||||||
@@ -464,9 +524,11 @@ Partial Class frmSettings
|
|||||||
Me.grpGameData.Controls.Add(Me.chkTimeTracking)
|
Me.grpGameData.Controls.Add(Me.chkTimeTracking)
|
||||||
Me.grpGameData.Controls.Add(Me.chkSync)
|
Me.grpGameData.Controls.Add(Me.chkSync)
|
||||||
Me.grpGameData.Controls.Add(Me.btnOptionalFields)
|
Me.grpGameData.Controls.Add(Me.btnOptionalFields)
|
||||||
Me.grpGameData.Location = New System.Drawing.Point(6, 106)
|
Me.grpGameData.Location = New System.Drawing.Point(8, 130)
|
||||||
|
Me.grpGameData.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.grpGameData.Name = "grpGameData"
|
Me.grpGameData.Name = "grpGameData"
|
||||||
Me.grpGameData.Size = New System.Drawing.Size(354, 69)
|
Me.grpGameData.Padding = New System.Windows.Forms.Padding(4)
|
||||||
|
Me.grpGameData.Size = New System.Drawing.Size(472, 85)
|
||||||
Me.grpGameData.TabIndex = 1
|
Me.grpGameData.TabIndex = 1
|
||||||
Me.grpGameData.TabStop = False
|
Me.grpGameData.TabStop = False
|
||||||
Me.grpGameData.Text = "Game Data"
|
Me.grpGameData.Text = "Game Data"
|
||||||
@@ -474,24 +536,47 @@ Partial Class frmSettings
|
|||||||
'lstSettings
|
'lstSettings
|
||||||
'
|
'
|
||||||
Me.lstSettings.FormattingEnabled = True
|
Me.lstSettings.FormattingEnabled = True
|
||||||
Me.lstSettings.Location = New System.Drawing.Point(12, 12)
|
Me.lstSettings.ItemHeight = 16
|
||||||
|
Me.lstSettings.Location = New System.Drawing.Point(16, 15)
|
||||||
|
Me.lstSettings.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.lstSettings.Name = "lstSettings"
|
Me.lstSettings.Name = "lstSettings"
|
||||||
Me.lstSettings.Size = New System.Drawing.Size(162, 303)
|
Me.lstSettings.Size = New System.Drawing.Size(215, 372)
|
||||||
Me.lstSettings.TabIndex = 0
|
Me.lstSettings.TabIndex = 0
|
||||||
'
|
'
|
||||||
|
'chkRestoreNotify
|
||||||
|
'
|
||||||
|
Me.chkRestoreNotify.AutoSize = True
|
||||||
|
Me.chkRestoreNotify.Location = New System.Drawing.Point(11, 23)
|
||||||
|
Me.chkRestoreNotify.Name = "chkRestoreNotify"
|
||||||
|
Me.chkRestoreNotify.Size = New System.Drawing.Size(257, 21)
|
||||||
|
Me.chkRestoreNotify.TabIndex = 8
|
||||||
|
Me.chkRestoreNotify.Text = "Notify about new backups to restore"
|
||||||
|
Me.chkRestoreNotify.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'chkAutoRestore
|
||||||
|
'
|
||||||
|
Me.chkAutoRestore.AutoSize = True
|
||||||
|
Me.chkAutoRestore.Location = New System.Drawing.Point(11, 50)
|
||||||
|
Me.chkAutoRestore.Name = "chkAutoRestore"
|
||||||
|
Me.chkAutoRestore.Size = New System.Drawing.Size(248, 21)
|
||||||
|
Me.chkAutoRestore.TabIndex = 9
|
||||||
|
Me.chkAutoRestore.Text = "Automatically restore new backups"
|
||||||
|
Me.chkAutoRestore.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
'frmSettings
|
'frmSettings
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!)
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.ClientSize = New System.Drawing.Size(554, 361)
|
Me.ClientSize = New System.Drawing.Size(739, 444)
|
||||||
|
Me.Controls.Add(Me.pnlBackup)
|
||||||
Me.Controls.Add(Me.lstSettings)
|
Me.Controls.Add(Me.lstSettings)
|
||||||
Me.Controls.Add(Me.btnDefaults)
|
Me.Controls.Add(Me.btnDefaults)
|
||||||
Me.Controls.Add(Me.btnCancel)
|
Me.Controls.Add(Me.btnCancel)
|
||||||
Me.Controls.Add(Me.btnSave)
|
Me.Controls.Add(Me.btnSave)
|
||||||
Me.Controls.Add(Me.pnlGeneral)
|
Me.Controls.Add(Me.pnlGeneral)
|
||||||
Me.Controls.Add(Me.pnl7z)
|
Me.Controls.Add(Me.pnl7z)
|
||||||
Me.Controls.Add(Me.pnlBackup)
|
|
||||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
|
Me.Margin = New System.Windows.Forms.Padding(4)
|
||||||
Me.MaximizeBox = False
|
Me.MaximizeBox = False
|
||||||
Me.MinimizeBox = False
|
Me.MinimizeBox = False
|
||||||
Me.Name = "frmSettings"
|
Me.Name = "frmSettings"
|
||||||
@@ -503,11 +588,13 @@ Partial Class frmSettings
|
|||||||
Me.grpStartup.PerformLayout()
|
Me.grpStartup.PerformLayout()
|
||||||
Me.grpFolderOptions.ResumeLayout(False)
|
Me.grpFolderOptions.ResumeLayout(False)
|
||||||
Me.grpFolderOptions.PerformLayout()
|
Me.grpFolderOptions.PerformLayout()
|
||||||
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.grp7zGeneral.ResumeLayout(False)
|
Me.grp7zGeneral.ResumeLayout(False)
|
||||||
Me.grp7zGeneral.PerformLayout()
|
Me.grp7zGeneral.PerformLayout()
|
||||||
Me.pnlBackup.ResumeLayout(False)
|
Me.pnlBackup.ResumeLayout(False)
|
||||||
Me.pnlBackup.PerformLayout()
|
Me.pnlBackup.PerformLayout()
|
||||||
|
CType(Me.nudSupressBackupThreshold, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.grpBackupHandling.ResumeLayout(False)
|
||||||
|
Me.grpBackupHandling.PerformLayout()
|
||||||
Me.pnl7z.ResumeLayout(False)
|
Me.pnl7z.ResumeLayout(False)
|
||||||
Me.grp7zAdvanced.ResumeLayout(False)
|
Me.grp7zAdvanced.ResumeLayout(False)
|
||||||
Me.grp7zAdvanced.PerformLayout()
|
Me.grp7zAdvanced.PerformLayout()
|
||||||
@@ -520,7 +607,6 @@ Partial Class frmSettings
|
|||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Friend WithEvents chkMonitorOnStartup As System.Windows.Forms.CheckBox
|
Friend WithEvents chkMonitorOnStartup As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkBackupConfirm As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents grpStartup As System.Windows.Forms.GroupBox
|
Friend WithEvents grpStartup As System.Windows.Forms.GroupBox
|
||||||
Friend WithEvents grpFolderOptions As System.Windows.Forms.GroupBox
|
Friend WithEvents grpFolderOptions As System.Windows.Forms.GroupBox
|
||||||
Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox
|
Friend WithEvents txtBackupFolder As System.Windows.Forms.TextBox
|
||||||
@@ -530,16 +616,10 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents btnBackupFolder As System.Windows.Forms.Button
|
Friend WithEvents btnBackupFolder As System.Windows.Forms.Button
|
||||||
Friend WithEvents chkShowDetectionTips As System.Windows.Forms.CheckBox
|
Friend WithEvents chkShowDetectionTips As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkStartToTray As System.Windows.Forms.CheckBox
|
Friend WithEvents chkStartToTray As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkOverwriteWarning As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
Friend WithEvents chkCreateFolder As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkRestoreOnLaunch As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
Friend WithEvents chkSync As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkCheckSum As System.Windows.Forms.CheckBox
|
|
||||||
Friend WithEvents chkStartWindows As System.Windows.Forms.CheckBox
|
Friend WithEvents chkStartWindows As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents chkTimeTracking As System.Windows.Forms.CheckBox
|
Friend WithEvents chkTimeTracking As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents lblMinutes As Label
|
|
||||||
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
|
||||||
Friend WithEvents chkSupressBackup As CheckBox
|
|
||||||
Friend WithEvents grp7zGeneral As GroupBox
|
Friend WithEvents grp7zGeneral As GroupBox
|
||||||
Friend WithEvents cboCompression As ComboBox
|
Friend WithEvents cboCompression As ComboBox
|
||||||
Friend WithEvents lblCompression As Label
|
Friend WithEvents lblCompression As Label
|
||||||
@@ -560,4 +640,14 @@ Partial Class frmSettings
|
|||||||
Friend WithEvents lstSettings As ListBox
|
Friend WithEvents lstSettings As ListBox
|
||||||
Friend WithEvents grp7zAdvanced As GroupBox
|
Friend WithEvents grp7zAdvanced As GroupBox
|
||||||
Friend WithEvents grp7zInformation As GroupBox
|
Friend WithEvents grp7zInformation As GroupBox
|
||||||
|
Friend WithEvents lblMinutes As Label
|
||||||
|
Friend WithEvents nudSupressBackupThreshold As NumericUpDown
|
||||||
|
Friend WithEvents chkSupressBackup As CheckBox
|
||||||
|
Friend WithEvents chkBackupConfirm As CheckBox
|
||||||
|
Friend WithEvents chkCheckSum As CheckBox
|
||||||
|
Friend WithEvents chkOverwriteWarning As CheckBox
|
||||||
|
Friend WithEvents grpBackupHandling As GroupBox
|
||||||
|
Friend WithEvents chkAutoMark As CheckBox
|
||||||
|
Friend WithEvents chkAutoRestore As CheckBox
|
||||||
|
Friend WithEvents chkRestoreNotify As CheckBox
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -48,7 +48,9 @@ Public Class frmSettings
|
|||||||
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
oSettings.DisableConfirmation = chkBackupConfirm.Checked
|
||||||
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
oSettings.CreateSubFolder = chkCreateFolder.Checked
|
||||||
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
oSettings.ShowOverwriteWarning = chkOverwriteWarning.Checked
|
||||||
oSettings.RestoreOnLaunch = chkRestoreOnLaunch.Checked
|
oSettings.RestoreOnLaunch = chkRestoreNotify.Checked
|
||||||
|
oSettings.AutoRestore = chkAutoRestore.Checked
|
||||||
|
oSettings.AutoMark = chkAutoMark.Checked
|
||||||
oSettings.TimeTracking = chkTimeTracking.Checked
|
oSettings.TimeTracking = chkTimeTracking.Checked
|
||||||
oSettings.SupressBackup = chkSupressBackup.Checked
|
oSettings.SupressBackup = chkSupressBackup.Checked
|
||||||
oSettings.SupressBackupThreshold = nudSupressBackupThreshold.Value
|
oSettings.SupressBackupThreshold = nudSupressBackupThreshold.Value
|
||||||
@@ -177,7 +179,9 @@ Public Class frmSettings
|
|||||||
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
chkBackupConfirm.Checked = oSettings.DisableConfirmation
|
||||||
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
chkCreateFolder.Checked = oSettings.CreateSubFolder
|
||||||
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
chkOverwriteWarning.Checked = oSettings.ShowOverwriteWarning
|
||||||
chkRestoreOnLaunch.Checked = oSettings.RestoreOnLaunch
|
chkRestoreNotify.Checked = oSettings.RestoreOnLaunch
|
||||||
|
chkAutoRestore.Checked = oSettings.AutoRestore
|
||||||
|
chkAutoMark.Checked = oSettings.AutoMark
|
||||||
txtBackupFolder.Text = oSettings.BackupFolder
|
txtBackupFolder.Text = oSettings.BackupFolder
|
||||||
chkSync.Checked = oSettings.Sync
|
chkSync.Checked = oSettings.Sync
|
||||||
chkCheckSum.Checked = oSettings.CheckSum
|
chkCheckSum.Checked = oSettings.CheckSum
|
||||||
@@ -280,7 +284,10 @@ Public Class frmSettings
|
|||||||
lblMinutes.Text = frmSettings_lblMinutes
|
lblMinutes.Text = frmSettings_lblMinutes
|
||||||
chkSupressBackup.Text = frmSettings_chkSupressBackup
|
chkSupressBackup.Text = frmSettings_chkSupressBackup
|
||||||
chkCheckSum.Text = frmSettings_chkCheckSum
|
chkCheckSum.Text = frmSettings_chkCheckSum
|
||||||
chkRestoreOnLaunch.Text = frmSettings_chkRestoreOnLaunch
|
grpBackupHandling.Text = frmSettings_grpBackupHandling
|
||||||
|
chkRestoreNotify.Text = frmSettings_chkRestoreNotify
|
||||||
|
chkAutoRestore.Text = frmSettings_chkAutoRestore
|
||||||
|
chkAutoMark.Text = frmSettings_chkAutoMark
|
||||||
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
chkOverwriteWarning.Text = frmSettings_chkOverwriteWarning
|
||||||
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
chkCreateFolder.Text = frmSettings_chkCreateFolder
|
||||||
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
chkBackupConfirm.Text = frmSettings_chkBackupConfirm
|
||||||
@@ -352,7 +359,7 @@ Public Class frmSettings
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub chkSupressBackup_CheckedChanged(sender As Object, e As EventArgs) Handles chkSupressBackup.CheckedChanged
|
Private Sub chkSupressBackup_CheckedChanged(sender As Object, e As EventArgs)
|
||||||
nudSupressBackupThreshold.Enabled = chkSupressBackup.Checked
|
nudSupressBackupThreshold.Enabled = chkSupressBackup.Checked
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -375,4 +382,5 @@ Public Class frmSettings
|
|||||||
Private Sub lstSettings_SelectedValueChanged(sender As Object, e As EventArgs) Handles lstSettings.SelectedValueChanged
|
Private Sub lstSettings_SelectedValueChanged(sender As Object, e As EventArgs) Handles lstSettings.SelectedValueChanged
|
||||||
ChangePanel()
|
ChangePanel()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
@@ -123,16 +123,10 @@ Public Class mgrRestore
|
|||||||
oLocalItem = DirectCast(slLocalManifest(oItem.Name), clsBackup)
|
oLocalItem = DirectCast(slLocalManifest(oItem.Name), clsBackup)
|
||||||
|
|
||||||
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
If oItem.DateUpdated > oLocalItem.DateUpdated Then
|
||||||
oLocalItem.FileName = oItem.FileName
|
slRestoreItems.Add(oItem.Name, oItem)
|
||||||
oLocalItem.DateUpdated = oItem.DateUpdated
|
|
||||||
oLocalItem.UpdatedBy = oItem.UpdatedBy
|
|
||||||
slRestoreItems.Add(oLocalItem.Name, oLocalItem)
|
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
oLocalItem = oItem
|
slRestoreItems.Add(oItem.Name, oItem)
|
||||||
oLocalItem.DateUpdated = oItem.DateUpdated
|
|
||||||
oLocalItem.UpdatedBy = oItem.UpdatedBy
|
|
||||||
slRestoreItems.Add(oLocalItem.Name, oLocalItem)
|
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ Public Class mgrSQLite
|
|||||||
"DisableConfirmation BOOLEAN NOT NULL, CreateSubFolder BOOLEAN NOT NULL, ShowOverwriteWarning BOOLEAN NOT NULL, RestoreOnLaunch BOOLEAN NOT NULL, " &
|
"DisableConfirmation BOOLEAN NOT NULL, CreateSubFolder BOOLEAN NOT NULL, ShowOverwriteWarning BOOLEAN NOT NULL, RestoreOnLaunch BOOLEAN NOT NULL, " &
|
||||||
"BackupFolder TEXT NOT NULL, Sync BOOLEAN NOT NULL, CheckSum BOOLEAN NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
"BackupFolder TEXT NOT NULL, Sync BOOLEAN NOT NULL, CheckSum BOOLEAN NOT NULL, StartWithWindows BOOLEAN NOT NULL, TimeTracking BOOLEAN NOT NULL, " &
|
||||||
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
||||||
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL);"
|
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN NOT NULL);"
|
||||||
|
|
||||||
'Add Tables (Monitor List)
|
'Add Tables (Monitor List)
|
||||||
sSql &= "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
sSql &= "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||||
@@ -608,6 +608,8 @@ Public Class mgrSQLite
|
|||||||
|
|
||||||
'Add new field(s)
|
'Add new field(s)
|
||||||
sSQL = "ALTER TABLE monitorlist ADD COLUMN CleanFolder BOOLEAN NOT NULL DEFAULT 0;"
|
sSQL = "ALTER TABLE monitorlist ADD COLUMN CleanFolder BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "ALTER TABLE settings ADD COLUMN AutoRestore BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
|
sSQL &= "ALTER TABLE settings ADD COLUMN AutoMark BOOLEAN NOT NULL DEFAULT 0;"
|
||||||
sSQL &= "PRAGMA user_version=101"
|
sSQL &= "PRAGMA user_version=101"
|
||||||
|
|
||||||
RunParamQuery(sSQL, New Hashtable)
|
RunParamQuery(sSQL, New Hashtable)
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ Public Class mgrSettings
|
|||||||
Private bCreateSubFolder As Boolean = False
|
Private bCreateSubFolder As Boolean = False
|
||||||
Private bShowOverwriteWarning As Boolean = True
|
Private bShowOverwriteWarning As Boolean = True
|
||||||
Private bRestoreOnLaunch As Boolean = False
|
Private bRestoreOnLaunch As Boolean = False
|
||||||
|
Private bAutoRestore As Boolean = False
|
||||||
|
Private bAutoMark As Boolean = False
|
||||||
Private bSync As Boolean = True
|
Private bSync As Boolean = True
|
||||||
Private bCheckSum As Boolean = True
|
Private bCheckSum As Boolean = True
|
||||||
Private bTimeTracking As Boolean = True
|
Private bTimeTracking As Boolean = True
|
||||||
@@ -93,6 +95,24 @@ Public Class mgrSettings
|
|||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Property AutoRestore As Boolean
|
||||||
|
Get
|
||||||
|
Return bAutoRestore
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bAutoRestore = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Property AutoMark As Boolean
|
||||||
|
Get
|
||||||
|
Return bAutoMark
|
||||||
|
End Get
|
||||||
|
Set(value As Boolean)
|
||||||
|
bAutoMark = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
Property Sync As Boolean
|
Property Sync As Boolean
|
||||||
Get
|
Get
|
||||||
Return bSync
|
Return bSync
|
||||||
@@ -251,7 +271,7 @@ Public Class mgrSettings
|
|||||||
sSQL = "INSERT INTO settings VALUES (1, @MonitorOnStartup, @StartToTray, @ShowDetectionToolTips, @DisableConfirmation, "
|
sSQL = "INSERT INTO settings VALUES (1, @MonitorOnStartup, @StartToTray, @ShowDetectionToolTips, @DisableConfirmation, "
|
||||||
sSQL &= "@CreateSubFolder, @ShowOverwriteWarning, @RestoreOnLaunch, @BackupFolder, @Sync, @CheckSum, @StartWithWindows, "
|
sSQL &= "@CreateSubFolder, @ShowOverwriteWarning, @RestoreOnLaunch, @BackupFolder, @Sync, @CheckSum, @StartWithWindows, "
|
||||||
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
sSQL &= "@TimeTracking, @SupressBackup, @SupressBackupThreshold, @CompressionLevel, @Custom7zArguments, @Custom7zLocation, "
|
||||||
sSQL &= "@SyncFields,@AutoSaveLog)"
|
sSQL &= "@SyncFields, @AutoSaveLog, @AutoRestore, @AutoMark)"
|
||||||
|
|
||||||
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
hshParams.Add("MonitorOnStartup", MonitorOnStartup)
|
||||||
hshParams.Add("StartToTray", StartToTray)
|
hshParams.Add("StartToTray", StartToTray)
|
||||||
@@ -272,6 +292,8 @@ Public Class mgrSettings
|
|||||||
hshParams.Add("Custom7zLocation", Custom7zLocation)
|
hshParams.Add("Custom7zLocation", Custom7zLocation)
|
||||||
hshParams.Add("SyncFields", SyncFields)
|
hshParams.Add("SyncFields", SyncFields)
|
||||||
hshParams.Add("AutoSaveLog", AutoSaveLog)
|
hshParams.Add("AutoSaveLog", AutoSaveLog)
|
||||||
|
hshParams.Add("AutoRestore", AutoRestore)
|
||||||
|
hshParams.Add("AutoMark", AutoMark)
|
||||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -305,6 +327,8 @@ Public Class mgrSettings
|
|||||||
If Not IsDBNull(dr("Custom7zLocation")) Then Custom7zLocation = CStr(dr("Custom7zLocation"))
|
If Not IsDBNull(dr("Custom7zLocation")) Then Custom7zLocation = CStr(dr("Custom7zLocation"))
|
||||||
SyncFields = CInt(dr("SyncFields"))
|
SyncFields = CInt(dr("SyncFields"))
|
||||||
AutoSaveLog = CBool(dr("AutoSaveLog"))
|
AutoSaveLog = CBool(dr("AutoSaveLog"))
|
||||||
|
AutoRestore = CBool(dr("AutoRestore"))
|
||||||
|
AutoMark = CBool(dr("AutoMark"))
|
||||||
Next
|
Next
|
||||||
|
|
||||||
oDatabase.Disconnect()
|
oDatabase.Disconnect()
|
||||||
|
|||||||
Generated
+59
-5
@@ -2310,6 +2310,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] has multiple configurations and cannot be automatically restored..
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_AutoRestoreFailure() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_AutoRestoreFailure", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Backup in Progress....
|
''' Looks up a localized string similar to Backup in Progress....
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3076,7 +3085,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] New Saves Pending.
|
''' Looks up a localized string similar to [PARAM] New Backups Pending.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_NewSaveNotificationMulti() As String
|
Friend ReadOnly Property frmMain_NewSaveNotificationMulti() As String
|
||||||
Get
|
Get
|
||||||
@@ -3085,7 +3094,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to [PARAM] New Save Pending.
|
''' Looks up a localized string similar to [PARAM] New Backup Pending.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmMain_NewSaveNotificationSingle() As String
|
Friend ReadOnly Property frmMain_NewSaveNotificationSingle() As String
|
||||||
Get
|
Get
|
||||||
@@ -3165,6 +3174,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] New Backups Restored.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_RestoreNotificationMulti() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_RestoreNotificationMulti", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to [PARAM] New Backup Restored.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmMain_RestoreNotificationSingle() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmMain_RestoreNotificationSingle", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to The backup file for [PARAM] is not ready to restore..
|
''' Looks up a localized string similar to The backup file for [PARAM] is not ready to restore..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3372,6 +3399,24 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Automatically mark backups as restored when appropriate.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkAutoMark() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkAutoMark", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Automatically restore new backups.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_chkAutoRestore() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_chkAutoRestore", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Autosave log when max length is exceeded.
|
''' Looks up a localized string similar to Autosave log when max length is exceeded.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
@@ -3427,11 +3472,11 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Notify when there are new backup files to restore.
|
''' Looks up a localized string similar to Notify about new backups to restore.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property frmSettings_chkRestoreOnLaunch() As String
|
Friend ReadOnly Property frmSettings_chkRestoreNotify() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("frmSettings_chkRestoreOnLaunch", resourceCulture)
|
Return ResourceManager.GetString("frmSettings_chkRestoreNotify", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -3552,6 +3597,15 @@ Namespace My.Resources
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Backup Handling.
|
||||||
|
'''</summary>
|
||||||
|
Friend ReadOnly Property frmSettings_grpBackupHandling() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("frmSettings_grpBackupHandling", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Looks up a localized string similar to Folders.
|
''' Looks up a localized string similar to Folders.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
|
|||||||
@@ -287,10 +287,10 @@
|
|||||||
<value>Multiple Games Detected</value>
|
<value>Multiple Games Detected</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NewSaveNotificationMulti" xml:space="preserve">
|
<data name="frmMain_NewSaveNotificationMulti" xml:space="preserve">
|
||||||
<value>[PARAM] New Saves Pending</value>
|
<value>[PARAM] New Backups Pending</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NewSaveNotificationSingle" xml:space="preserve">
|
<data name="frmMain_NewSaveNotificationSingle" xml:space="preserve">
|
||||||
<value>[PARAM] New Save Pending</value>
|
<value>[PARAM] New Backup Pending</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmMain_NoDetails" xml:space="preserve">
|
<data name="frmMain_NoDetails" xml:space="preserve">
|
||||||
<value>Game details are unavailable.</value>
|
<value>Game details are unavailable.</value>
|
||||||
@@ -1087,8 +1087,8 @@
|
|||||||
<data name="frmSettings_chkOverwriteWarning" xml:space="preserve">
|
<data name="frmSettings_chkOverwriteWarning" xml:space="preserve">
|
||||||
<value>Show overwrite warning</value>
|
<value>Show overwrite warning</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkRestoreOnLaunch" xml:space="preserve">
|
<data name="frmSettings_chkRestoreNotify" xml:space="preserve">
|
||||||
<value>Notify when there are new backup files to restore</value>
|
<value>Notify about new backups to restore</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmSettings_chkShowDetectionTips" xml:space="preserve">
|
<data name="frmSettings_chkShowDetectionTips" xml:space="preserve">
|
||||||
<value>Show detection notifications</value>
|
<value>Show detection notifications</value>
|
||||||
@@ -1741,4 +1741,22 @@
|
|||||||
<data name="frmMain_RestoreNotReady" xml:space="preserve">
|
<data name="frmMain_RestoreNotReady" xml:space="preserve">
|
||||||
<value>The backup file for [PARAM] is not ready to restore.</value>
|
<value>The backup file for [PARAM] is not ready to restore.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="frmSettings_chkAutoMark" xml:space="preserve">
|
||||||
|
<value>Automatically mark backups as restored when appropriate</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_grpBackupHandling" xml:space="preserve">
|
||||||
|
<value>Backup Handling</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmSettings_chkAutoRestore" xml:space="preserve">
|
||||||
|
<value>Automatically restore new backups</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_AutoRestoreFailure" xml:space="preserve">
|
||||||
|
<value>[PARAM] has multiple configurations and cannot be automatically restored.</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_RestoreNotificationMulti" xml:space="preserve">
|
||||||
|
<value>[PARAM] New Backups Restored</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmMain_RestoreNotificationSingle" xml:space="preserve">
|
||||||
|
<value>[PARAM] New Backup Restored</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
Reference in New Issue
Block a user