diff --git a/app/DD_PM_WINDREAM/frmMain.vb b/app/DD_PM_WINDREAM/frmMain.vb index 2d3e083..3f3eb17 100644 --- a/app/DD_PM_WINDREAM/frmMain.vb +++ b/app/DD_PM_WINDREAM/frmMain.vb @@ -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