Changes for issue #109

This commit is contained in:
Michael J. Seiferling
2017-12-05 18:06:22 -06:00
parent e106d7c09c
commit 2c0fdb776e
8 changed files with 66 additions and 16 deletions
+17
View File
@@ -3,6 +3,7 @@ Imports System.IO
Public Class frmAdvancedImport
Private oImportInfo As ExportInformation
Private hshImportData As Hashtable
Private hshFinalData As New Hashtable
Private bSelectAll As Boolean = True
@@ -10,6 +11,15 @@ Public Class frmAdvancedImport
Private iCurrentSort As Integer = 0
Private WithEvents tmFilterTimer As Timer
Public Property ImportInfo As ExportInformation
Set(value As ExportInformation)
oImportInfo = value
End Set
Get
Return oImportInfo
End Get
End Property
Public Property ImportData As Hashtable
Set(value As Hashtable)
hshImportData = value
@@ -141,6 +151,13 @@ Public Class frmAdvancedImport
btnImport.Text = frmAdvancedImport_btnImport
chkSelectAll.Text = frmAdvancedImport_chkSelectAll
'Import Information
If ImportInfo.Exported <> 0 Then
lblInfo.Text = mgrCommon.FormatString(frmAdvancedImport_lblInfo, New String() {mgrCommon.UnixToDate(ImportInfo.Exported).Date, mgrCommon.DisplayAppVersion})
Else
lblInfo.Text = String.Empty
End If
chkSelectAll.Checked = True
'Init Filter Timer