NewToDelphi,
Yes, it's possible. There are a number of ways to do it. Here's one:
1. Create a new form.
2. From the BDE tab, place a Table component on the form.
3. Select the Table component. Set DatabaseName to the directory containing the dBASE table and the TableName property to the table's filename, e.g. MyTABLE.DBF.
4. Set Active to true. If everything's OK, then the table is actually open.
5. From the Data Acess tab, p[lace a DataSource component on the form and connect it's Dataset property to Table1.
6. From the Data Controls tab, place a DBGrid on the form and then set its DataSource property to DataSource1.
Save and run your project. Season to taste.
Hope this helps...
-- Lance