` Printed Icetips Article

Icetips Article



Par2: Has Edit in Place field changed?
2003-01-30 -- Justin Cole
 
In the embed Local Objects > EditInPlace::PRE:FieldName (where field name is
the EIP field you want to monitor)
Case Event()
Of Event:Selected
  SaveVariable = BRWn.Q.Pre:FieldName
End
This saves off the queue value since the file value is not in the buffer at
this time.
The tricky part is that EIP does not produce an Event:Accepted so you will
need to watch how your user exits the field.

If ReturnValue <> EditAction:None AND ReturnValue <> EditAction:Cancel
  If SaveVariable <> BRWn.Q.PRE:FieldName
    Result code goes here
  End
End

Hope this helps,



Printed May 4, 2024, 3:18 pm
This article has been viewed/printed 35107 times.