@@ -436,10 +436,9 @@ Public Class Form1
436
436
settingsCustomExeTextBox.Text = My.Settings.CustomExeLoc
437
437
If My.Settings.LatestBackupTime <> Nothing Then
438
438
'Write the latest backup timestamp on the main screen...
439
- latestBackupTimestampLabel .Text = My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
439
+ latestBackupHelpLabel .Text = "Latest backup: " & My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
440
440
'...and move it to the left so it won't be cut off.
441
441
latestBackupHelpLabel.Location = New Point( 269 , 23 )
442
- latestBackupTimestampLabel.Location = New Point( 357 , 23 )
443
442
End If
444
443
445
444
'Set window position
@@ -760,9 +759,8 @@ Public Class Form1
760
759
761
760
'Write the timestamp of this backup on the main screen
762
761
'And move it to the left so it won't be cut off
763
- latestBackupTimestampLabel .Text = My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
762
+ latestBackupHelpLabel .Text = "Latest backup: " & My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
764
763
latestBackupHelpLabel.Location = New Point( 269 , 23 )
765
- latestBackupTimestampLabel.Location = New Point( 357 , 23 )
766
764
767
765
Dim saveLoc As String = saveLocTextBox.Text
768
766
Dim destLoc As String = destLocTextBox.Text & My.Settings.LatestBackupTime.ToString( "\\yyyyMMdd HHmm" )
@@ -803,7 +801,7 @@ Public Class Form1
803
801
My.Settings.SecondToLastBackupTime = My.Settings.LatestBackupTime.Subtract(TimeSpan.FromMinutes(freqSelectTimeUpDown.Value))
804
802
805
803
'Write the timestamp of this backup on the main screen
806
- latestBackupTimestampLabel .Text = My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
804
+ latestBackupHelpLabel .Text = "Latest backup: " & My.Settings.LatestBackupTime.ToString( "MM/dd/yyyy hh:mm tt" )
807
805
808
806
Dim saveLoc As String = saveLocTextBox.Text
809
807
Dim destLoc As String = destLocTextBox.Text & My.Settings.LatestBackupTime.ToString( "\\yyyyMMdd HHmm" )
0 commit comments