fix PROFILE_TITLE variable and placeholder
This commit is contained in:
parent
fa22fba420
commit
e958d3a2bf
@ -1551,7 +1551,7 @@ Public Class frmMain
|
|||||||
bsiMessage.ItemAppearance.Normal.BackColor = Color.Red
|
bsiMessage.ItemAppearance.Normal.BackColor = Color.Red
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
Dim groupRowText
|
Dim groupRowText = ""
|
||||||
|
|
||||||
If hitInfo.InGroupRow Then
|
If hitInfo.InGroupRow Then
|
||||||
GridViewItem_Clicked = "GROUP"
|
GridViewItem_Clicked = "GROUP"
|
||||||
@ -1595,14 +1595,14 @@ Public Class frmMain
|
|||||||
Dim PROFIL_TITLE
|
Dim PROFIL_TITLE
|
||||||
If GRID_LOAD_TYPE = "OVERVIEW" Then
|
If GRID_LOAD_TYPE = "OVERVIEW" Then
|
||||||
Try
|
Try
|
||||||
groupRowText = LTrim(RTrim(groupRowText.ToString.Replace("GROUP_TEXT: ", "")))
|
groupRowText = groupRowText.ToString.Replace("Profile (Fixed): ", "").Trim()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
|
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
Dim _SPLIT As String()
|
Dim _SPLIT As String()
|
||||||
_SPLIT = groupRowText.Split("|")
|
_SPLIT = groupRowText.Split("|")
|
||||||
PROFIL_TITLE = LTrim(RTrim(_SPLIT(0).ToString))
|
PROFIL_TITLE = _SPLIT(0).ToString.Trim()
|
||||||
Else
|
Else
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user