I have a card with many fields and Option menu, I would like to check if they are changed on the close card.

Code: Select all
on closeCard
..... check changed field .....
end closeCard
thank you
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on closeCard
..... check changed field .....
end closeCard
thank you
thank you!Klaus wrote:Hi,
this obviously requires that you store the content of all your fields "on opencard" for later comparison!
So I would rather "trap" the "closefield" handler(s) of your fields.
Best
Klaus
Code: Select all
put field "text1" into tFld1
put field "text2" into tFld2
put field "text3" into tFld3