Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Jenne
35bb433f78 Version 0.8.2.0 2022-07-12 16:22:55 +02:00
Jonathan Jenne
30db2cba19 Fix missing events 2022-07-12 16:22:31 +02:00
2 changed files with 4 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("0.8.1.0")>
<Assembly: AssemblyTrademark("0.8.2.0")>
<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("0.8.1.0")>
<Assembly: AssemblyVersion("0.8.2.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -1053,6 +1053,8 @@ Public Class frmMonitor
TreeListResults.ParentFieldName = "PARENT_ID"
AddHandler TreeListResults.FocusedNodeChanged, AddressOf TreeListResults_FocusedNodeChanged
AddHandler TreeListResults.MouseClick, AddressOf TreeListResults_MouseClick
AddHandler TreeListResults.CustomDrawNodeCell, AddressOf TreeListResults_CustomDrawNodeCell
GridBuilder.SetDefaults(TreeListResults)
GridBuilder.SetClipboardHandler(TreeListResults)