This commit is contained in:
chi
2023-05-02 14:11:25 +09:00
parent 310ecd26c4
commit 7cb449e071

View File

@@ -213,8 +213,16 @@ namespace Project._Common
} }
try
{
db.SaveChanges(); db.SaveChanges();
this.DialogResult = DialogResult.OK; this.DialogResult = DialogResult.OK;
}
catch (Exception ex)
{
FCOMMON.Util.MsgE("save error\n"+ex.Message);
}
} }