![]() |
MK Frank R 12/5/2017 |
I would recommend that you dynamically calculate that sum when you need it with some SQL. But, if you truly want to update a field with the sum, yes, you'd add some DAL code in the after add event. |
I
|
i.NoLim author 12/6/2017 |
I managed to code something in SQL but that's not going to work for me, I need something that updates the Total every time a new "Allowance" is added/modified. UPDATE T
|
![]() |
MK Frank R 12/6/2017 |
Have you read the DAL section in the manual? |
I
|
i.NoLim author 12/6/2017 |
I actually used something like that for a previous project and had the hardest time figuring it out, but eventually did. dynamic tabler = GlobalVars.dal.Table("dbo.Deleted");
|
I
|
i.NoLim author 12/11/2017 |
I solved this issue by entering my SQL code in the "After record added" and "After record updated" events. DB.Query("SQL Code"); |