Here are a couple of basic commands that may assist you.
Consider changing your working directory to a project folder using "CD xxx"; Setting a path using "SET PATH TO xxx ADDITIVE"; opening a database using "OPEN DATABASE xxx"; opening a table using "USE xxx IN 0", selecting the table using "SELECT xxx"; and finally browsing the records using "BROWSE". There are options for all of these commands, which you can get help by using F1.
For example, if you have created project in the following folder "C:\My VFP Projects\Project 1", a "Data" subfolder, and a database called Data1.dbc within that data folder. From the Command Window (Ctrl+F2), try out these commands.
CD "C:\My VFP Projects\Project 1"
SET PATH TO Data ADDITIVE
OPEN DATABASE Data1
USE Data1!Table1 in 0
SELECT Table1
BROWSE
Best of luck,
Bob Ethridge