On 02/13/12 10:40, Joe Yoder wrote:
> Now I'm wondering if one could test for equality on two arrays by
> comparing memo fields with the arrays in them.

Not sure about comparing just the memo fields, but you can easily 
compare the entire record(s), including the memo fields:
       local oSaveRec, oNewRec
       select OldFile
       scatter memo name oSaveRec
       select NewFile
       scatter memo name oNewRec
       if not compobj(oSaveRec, oNewRec)
          *-- Something changed.
       endif

The compobj call is very, very fast.

Dan

_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/4f396717.2090...@san.rr.com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to