Hi,
Can anyone tell me why I am getting an error message from the DAO sub-system telling me that it can't find an Installable ISAM when I try to access an Access database that I have just created under program control?

I am able to create the database using the pgm code below, but when I try to open it if it already exists, it tells me that it can'f find an Installable ISAM.

Help, anyone!


Thanks,

Austin.

-------------------------------------------------
bool CExtractDlg::GetAccessDatabase(void)
{
CDaoDatabase dDAO;
int nResult;
struct _stat buf;
bool retVal = true;

if ((nResult = _stat(m_OutputFPath, &buf)) != 0)
{
msgString.Format("New Access database file <%s> will be created.\n\nContinue with process?", m_OutputFPath);
if (!dispMsg("New Database!", msgString, 4))
retVal = false;

if (retVal)
dDAO.Create(LPCTSTR(m_OutputFPath), dbLangGeneral, 0);
}
else
dDAO.Open(LPCTSTR(m_OutputFPath), true, false, _T(""));

dDAO.Close();

return retVal;

}