Changes for issue #109
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user