MS easyFlow GUI - Match Strings ändern

This commit is contained in:
Developer01
2025-01-30 09:15:03 +01:00
parent 36f4532ccc
commit c4d0b17564
3 changed files with 11 additions and 8 deletions

View File

@@ -82,7 +82,7 @@ Public Class ProfileFilter
Dim oFilteredProfiles As New List(Of ProfileData)
Dim oRootNode As TreeNode = New TreeNode() With {
.Text = $"Suche nach '{ClipboardContents}'",
.Text = $"easyFLOW Search with term [{ClipboardContents}]",
.Tag = NODE_ROOT,
.ImageIndex = ImageIndex.Root
}
@@ -90,6 +90,9 @@ Public Class ProfileFilter
_TreeView.Nodes.Add(oRootNode)
For Each oProfile In Profiles
If oProfile.Name = String.Empty Then
oProfile.Name = $"ProfileName for ID {oProfile.Guid} is empty - Check SQL"
End If
Logger.Debug("Current Profile: {0}", oProfile.Name)
Dim oNode = _ProfileMatch.NewProfileNode(oProfile)