Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion dotnet/src/dotnetframework/GxClasses/Domain/GxMessages.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using GeneXus.Utils;
using GeneXus.Utils;
using System;
using System.Linq;


namespace GeneXus.Application
Expand Down Expand Up @@ -42,6 +43,10 @@ public short AnyError()
}
return MESSAGE_TYPE_WARNING;
}
public bool HasAny(string messageId)
{
return this.Any(item => item.gxTpr_Id == messageId);
}
public void addItem(string s)
{
Add(new msglistItem("", s, 0, "", false));
Expand Down
Loading