Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Comparing
Message
 
 
To
25/06/2001 17:17:30
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00523261
Message ID:
00523302
Views:
15
Yeah, looks like it should work. I would probably do something like this:
FUNCTION IsDup
LOCAL llDupRec

SELE LOCAL_HIV
SCATTER MEMO NAME oRecOne

SELE CDCHIV
SCATTER MEMO NAME oRecTwo

IF COMPOBJ( oRecOne, oRecTwo )
  *Duplicate
  llDupRec = .T.
ELSE
  *not a duplicate
  llDupRec = .F.
ENDIF

RETURN llDupRec
Good luck,
John
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform