We have a TDAMemDataTable with some memo fields
At some point we want to see for which records this field has changed (before an apply)
We do this by comparing the value with OldValue
newvdm_info:=lWeegProtocol.vdm_Informatie.Text;
oldvdm_info:=Self.FieldByName(fld_WeegProtocolvdm_Informatie).OldValue;
if (newvdm_info<>oldvdm_info) then
However OldValue now always seem to contain null (same as Value)
I believe this used to work.
How do we achieve this?