Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Jenne
451dd0097e Version 1.0.0.1 2022-07-26 11:26:15 +02:00
Jonathan Jenne
dd2dd7aa65 Focus Results after executing Search 2022-07-26 11:25:51 +02:00
2 changed files with 6 additions and 2 deletions

View File

@ -11,7 +11,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("Monitor")>
<Assembly: AssemblyCopyright("Copyright © 2022")>
<Assembly: AssemblyTrademark("1.0.0.0")>
<Assembly: AssemblyTrademark("1.0.0.1")>
<Assembly: AssemblyCulture("")>
' Setting ComVisible to false makes the types in this assembly not visible
@ -32,5 +32,5 @@ Imports System.Runtime.InteropServices
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' [assembly: AssemblyVersion("1.0.*")]
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.0.0.1")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@ -222,6 +222,8 @@ Public Class frmMonitor
Next
SetResultCount(TreeListResults.AllNodesCount)
TreeListResults.Focus()
Else
GridControlResults.Visible = True
GridControlResults.Dock = DockStyle.Fill
@ -250,6 +252,8 @@ Public Class frmMonitor
Next
SetResultCount(GridViewResults.RowCount)
GridControlResults.Focus()
End If
GridViewResults.FocusInvalidRow()