Compare commits
2 Commits
f08ad76d45
...
f167c6558a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f167c6558a | ||
|
|
2e1e981b0f |
@@ -11,7 +11,7 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyCompany("Digital Data")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("ZooFlow")>
|
<Assembly: AssemblyProduct("ZooFlow")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2022")>
|
<Assembly: AssemblyCopyright("Copyright © 2022")>
|
||||||
<Assembly: AssemblyTrademark("1.3.0.1")>
|
<Assembly: AssemblyTrademark("1.3.0.2")>
|
||||||
<Assembly: AssemblyCulture("")>
|
<Assembly: AssemblyCulture("")>
|
||||||
|
|
||||||
' Setting ComVisible to false makes the types in this assembly not visible
|
' 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
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' [assembly: AssemblyVersion("1.0.*")]
|
' [assembly: AssemblyVersion("1.0.*")]
|
||||||
<Assembly: AssemblyVersion("1.3.0.1")>
|
<Assembly: AssemblyVersion("1.3.0.2")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
@@ -386,14 +386,11 @@ Public Class frmSearchFlow
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ViewSearches_CustomColumnSort(sender As Object, e As Views.Base.CustomColumnSortEventArgs) Handles ViewSearches.CustomColumnSort
|
Private Sub ViewSearches_CustomColumnSort(sender As Object, e As Views.Base.CustomColumnSortEventArgs) Handles ViewSearches.CustomColumnSort
|
||||||
Console.WriteLine()
|
If TypeOf e.RowObject1 Is CustomSearch Or TypeOf e.RowObject2 Is CustomSearch Then
|
||||||
|
|
||||||
If TypeOf e.RowObject1 Is CustomSearch Then
|
|
||||||
e.Result = 1
|
|
||||||
e.Handled = True
|
|
||||||
Else
|
|
||||||
e.Result = -1
|
e.Result = -1
|
||||||
e.Handled = True
|
e.Handled = True
|
||||||
|
Else
|
||||||
|
e.Handled = False
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
Reference in New Issue
Block a user