Rick,
I think the code below should suffice. I have tried it on version 8. I have commented the code to show what each line is doing. Feel free to strip the comments out when you paste into your application.
I hope that this helps.
Regards
Bystander
===========================================================
var
tblName String
tblView TableView
endVar
fileBrowserEx(tblName) ;calls up the Windows file browser,
;and waits for you to choose a
;Paradox table. variable tblName
;stores the table chosen
if isTable(tblName) then
tblView.open(tblName) ;open a Table window for the
;table name stored in the variable
endIf