Edit Table Property (OpenInsight 32-Bit)
At 23 NOV 2008 10:18:58AM Richard Richter wrote:
I have a form with a data edit table. Which property do I use to find if the data has been modified?
Thanks
Richard Richter
At 23 NOV 2008 11:30PM Barry Stevens wrote:
AFAIK, there is not. @Window's SAVEWARN will tell you if changes made anywhere in the window.
You could set a global variable in the changed event and test for that:
set_property(CtrlEntId,"@CHANGEMADE",1)
At 24 NOV 2008 07:47AM John Bouley wrote:
There is a "modified" property but the help states it applies to: Combo box, edit box, edit line.
Sometimes I have found that the SAVEWARN erroneously gets turned on. To combat this I save the contents of ATRECORD to @OREC at post Read. Then on Pre Close, Pre Clear, Pre Write. I check to see if something has changed. If nothing changed then I force SAVEWARN off.
HTH,
John