OpenDatabase FoxPro 2.5 ERROR: Could Not Find Installable ISAM

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • paulcybulski
    New Member
    • Nov 2007
    • 25

    OpenDatabase FoxPro 2.5 ERROR: Could Not Find Installable ISAM

    I am converting my VB 6 code which works fine with FoxPro2.5 to VB.NET...and I am unable to Open the database...I am pretty sure I have all the syntax correct, but the code is just not working...I keep getting the Could Not Find Installable ISAM error...any ideas?

    here is some relevant code
    Code:
            
    Dbe = New dao.DBEngine()         
    dbReport = Dbe.OpenDatabase(App_Path, False, False, "FoxPro 2.5;")         
    qry = "Select * From 07demoa.dbf"         
    dbMaster = dbReport.OpenRecordset("07demoa")
Working...