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