Walter,
Sort of, though Delphi's way of using tables is different than FoxPro's. In Delphi, you create a data module with ADO components pointing to the tables. Next, you create your client form, use the datamodule, place the visual components you need, and then connect them to the ADO components in your dataModule.
This design work saves you from writing code, for the database access is built into the connections between the components and there's no need to open the table in code.
However, if you want to do so, you can. Simply set properties of either your ADOTable and ADOConnection objects in the data module.
Hope this helps...
-- Lance