Forgive the basic level, but you said you're unfamiliar with programming, so maybe we should back up a bit:
First, these are DBF files, right, not a SQL Server or Oracle database? If it's a client server database, you won't necessarily be working in VFP, but in the environment of the database. The procedure may vary slightly depending on the environment.
Second, you have access to a full version of Visual Foxpro, so you can access the VFP development environment, i.e., get a VFP command window, right?
Third, as Mike G indicated, you need a field in the record to identify the records that are older than 2002. If that's a date field, Mike's procedure is correct. If it's another type of field, like a sequential ID field or a part number, then you have to adjust the instructions accordingly.
The thing about DBF files that's different from most other formats is that the records aren't physically deleted when you hit the DELETE key. Even if you don't see them any more, they're still there and taking up space. They are physically removed from the table only when you issue the PACK command. That's where Brian is coming from. You need EXCLUSIVE access to pack the file, unlike when you're just marking the records for deletion.
So: Tell us a little more about your set-up, and we then can give you the correct instructions.
Mike Krausnick
Dublin, California