Zooflow: Readd Load_recent_files, add second service config

This commit is contained in:
Jonathan Jenne
2022-05-02 16:26:12 +02:00
parent 9a5207b316
commit 8499e84586
22 changed files with 215 additions and 2502 deletions

View File

@@ -30,6 +30,7 @@ Public Class SearchRunner
End Enum
Public Event NeedsRefresh As EventHandler(Of Integer)
Public Event Closed As EventHandler(Of Integer)
Private Property _ActiveDateConstraint As String = String.Empty
Public ReadOnly Property ActiveDateConstraint As String
@@ -76,6 +77,7 @@ Public Class SearchRunner
' TODO: Implement, not needed right now
'AddHandler oForm.NeedsRefresh, AddressOf Form_NeedsRefresh
AddHandler oForm.FormClosed, AddressOf Form_Closed
oForm.Show()
@@ -129,6 +131,7 @@ Public Class SearchRunner
' TODO: Implement, not needed right now
'AddHandler oForm.NeedsRefresh, AddressOf Form_NeedsRefresh
AddHandler oForm.FormClosed, AddressOf Form_Closed
oForm.Show()
@@ -143,6 +146,10 @@ Public Class SearchRunner
End If
End Function
Private Sub Form_Closed(sender As Object, e As EventArgs)
RaiseEvent Closed(sender, 0)
End Sub
Private Function GetParams(pWindowTitle As String) As DocumentResultList.Params
Dim oParams = New DocumentResultList.Params() With {
.WindowGuid = SearchTitle,