Changes for issue #131
This commit is contained in:
@@ -847,14 +847,14 @@ Public Class frmGameManager
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub FillTagsbyID(ByVal sID As String)
|
Private Sub FillTagsbyID(ByVal sID As String)
|
||||||
Dim hshTags As Hashtable
|
Dim slTags As SortedList
|
||||||
Dim oTag As clsTag
|
Dim oTag As clsTag
|
||||||
Dim sTags As String = String.Empty
|
Dim sTags As String = String.Empty
|
||||||
Dim cTrim() As Char = {",", " "}
|
Dim cTrim() As Char = {",", " "}
|
||||||
|
|
||||||
hshTags = mgrGameTags.GetTagsByGame(sID)
|
slTags = mgrGameTags.GetTagsByGame(sID)
|
||||||
|
|
||||||
For Each de As DictionaryEntry In hshTags
|
For Each de As DictionaryEntry In slTags
|
||||||
oTag = DirectCast(de.Value, clsTag)
|
oTag = DirectCast(de.Value, clsTag)
|
||||||
sTags &= "#" & oTag.Name & ", "
|
sTags &= "#" & oTag.Name & ", "
|
||||||
Next
|
Next
|
||||||
|
|||||||
@@ -76,11 +76,11 @@
|
|||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Function GetTagsByGame(ByVal sMonitorID As String) As Hashtable
|
Public Shared Function GetTagsByGame(ByVal sMonitorID As String) As SortedList
|
||||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||||
Dim oData As DataSet
|
Dim oData As DataSet
|
||||||
Dim sSQL As String
|
Dim sSQL As String
|
||||||
Dim hshList As New Hashtable
|
Dim slList As New SortedList
|
||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
Dim oTag As clsTag
|
Dim oTag As clsTag
|
||||||
|
|
||||||
@@ -94,10 +94,10 @@
|
|||||||
oTag = New clsTag
|
oTag = New clsTag
|
||||||
oTag.ID = CStr(dr("TagID"))
|
oTag.ID = CStr(dr("TagID"))
|
||||||
oTag.Name = CStr(dr("Name"))
|
oTag.Name = CStr(dr("Name"))
|
||||||
hshList.Add(oTag.Name, oTag)
|
slList.Add(oTag.Name, oTag)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Return hshList
|
Return slList
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Shared Function GetTagsByGameForExport(ByVal sMonitorID As String) As List(Of Tag)
|
Public Shared Function GetTagsByGameForExport(ByVal sMonitorID As String) As List(Of Tag)
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
Dim hshParams As New Hashtable
|
Dim hshParams As New Hashtable
|
||||||
Dim oTag As Tag
|
Dim oTag As Tag
|
||||||
|
|
||||||
sSQL = "SELECT TagID, tags.Name FROM gametags NATURAL JOIN tags WHERE MonitorID = @ID"
|
sSQL = "SELECT TagID, tags.Name FROM gametags NATURAL JOIN tags WHERE MonitorID = @ID ORDER BY tags.Name ASC"
|
||||||
|
|
||||||
hshParams.Add("ID", sMonitorID)
|
hshParams.Add("ID", sMonitorID)
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
|
|||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("1.1.2.*")>
|
<Assembly: AssemblyVersion("1.1.3.*")>
|
||||||
<Assembly: AssemblyFileVersion("1.1.2.0")>
|
<Assembly: AssemblyFileVersion("1.1.3.0")>
|
||||||
|
|
||||||
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
||||||
Reference in New Issue
Block a user