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
|
||||
Exit Sub
|
||||
End If
|
||||
Dim groupRowText
|
||||
Dim groupRowText = ""
|
||||
|
||||
If hitInfo.InGroupRow Then
|
||||
GridViewItem_Clicked = "GROUP"
|
||||
@ -1595,14 +1595,14 @@ Public Class frmMain
|
||||
Dim PROFIL_TITLE
|
||||
If GRID_LOAD_TYPE = "OVERVIEW" Then
|
||||
Try
|
||||
groupRowText = LTrim(RTrim(groupRowText.ToString.Replace("GROUP_TEXT: ", "")))
|
||||
groupRowText = groupRowText.ToString.Replace("Profile (Fixed): ", "").Trim()
|
||||
Catch ex As Exception
|
||||
|
||||
End Try
|
||||
|
||||
Dim _SPLIT As String()
|
||||
_SPLIT = groupRowText.Split("|")
|
||||
PROFIL_TITLE = LTrim(RTrim(_SPLIT(0).ToString))
|
||||
PROFIL_TITLE = _SPLIT(0).ToString.Trim()
|
||||
Else
|
||||
|
||||
End If
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user