From 55460138f9b21bd922665510f9c5c4fe14bbabb4 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 15 Oct 2020 22:51:11 +0000 Subject: [PATCH] case 3823 --- source/WinFormApp/Util.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/WinFormApp/Util.cs b/source/WinFormApp/Util.cs index a9ecac1..a44cb7c 100644 --- a/source/WinFormApp/Util.cs +++ b/source/WinFormApp/Util.cs @@ -3353,7 +3353,7 @@ At first I was happy to find your code that solved my problem, but I did not lik static public bool EditRecord(RootObjectTypes ObjectType, Guid ID) { //call version with optional id as optional id empty - return EditRecord(ObjectType, ID); + return EditRecord(ObjectType, ID, null); } //case 227 @@ -3366,7 +3366,7 @@ At first I was happy to find your code that solved my problem, but I did not lik { if (nvi.Value == Guid.Empty) return false; if (nvi.RootObjectType == RootObjectTypes.Nothing) return false; - return EditRecord(nvi.RootObjectType, nvi.Value); + return EditRecord(nvi.RootObjectType, nvi.Value, null); } /// @@ -3376,7 +3376,7 @@ At first I was happy to find your code that solved my problem, but I did not lik /// static public bool EditRecord(TypeAndID TID) { - return EditRecord(TID.RootObjectType, TID.ID); + return EditRecord(TID.RootObjectType, TID.ID, null); } /// /// Same as edit record but with optional id parameter