Language: Add UnixTime Converter

This commit is contained in:
Jonathan Jenne
2022-01-18 16:18:47 +01:00
parent cc24b8eb31
commit b00ffff0d9
4 changed files with 18 additions and 5 deletions

View File

@@ -228,12 +228,12 @@ Public Class frmFlowSearch
}
Dim oShortGuid = Guid.NewGuid()
Dim oWindowGuid = $"FLOWSEARCH-{My.User.Name}"
Dim oParams = New DocumentResultParams() With {
Dim oParams = New DocumentResultList.Params() With {
.WindowGuid = oWindowGuid,
.Results = New List(Of DocumentResultList) From {
New DocumentResultList() With {
.Title = "FlowSearchResult",
.Datatable = pDTRESULT
.DataTable = pDTRESULT
}
}
}

View File

@@ -951,10 +951,10 @@ Public Class frmSearchStart
If oDTSearchResult.Rows.Count > 0 Then
Dim oShortGuid = Guid.NewGuid()
Dim oWindowGuid = $"{SEARCH_ID.ToString}-{My.User.Name}"
Dim oParams = New DocumentResultParams() With {
Dim oParams = New DocumentResultList.Params() With {
.WindowGuid = oWindowGuid,
.Results = New List(Of DocumentResultList) From {
New DocumentResultList() With {
.Results = New List(Of DocumentResultList.DocumentResult) From {
New DocumentResultList.DocumentResult() With {
.Title = SelectedTab.Text,
.Datatable = oDTSearchResult
}