Deleting Fields via Program Code

Q: Is there a way to delete a field from a level 7 table from inside the application?

A: Use ALTER & DROP as per the following example:

ALTER TABLE "YourTable.dbf" DROP FieldToDelete

Note: The table being altered must not be open.