lapal
unread,Aug 5, 2010, 9:11:39 AM8/5/10You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello,
I do the following test in my program:
CDaoDatabase dao_db;
AfxDaoInit();
try
{
dao_db.Open(rep_programme,FALSE,FALSE,_T("dBASE IV"));
}
catch(CDaoException* ex)
{
// si pb d'ouverture de la base, on sort
CString message;
AfxFormatString1(message,ERREUR_OPEN_DAO,"");
AfxMessageBox(message,MB_OK+MB_ICONERROR,0);
CImpCampDlg::EndDialog(IDCANCEL);
return;
}
When the program is running on XP, a get an error "Libraries to access
dbf
IV are not installed on the computer".
I guess I need to add the right library in my deployment project (VS 2008).
Which library and how to integrate it in my VS Solution?
Thank you,
Ludo