void Build_SystemDSN(CString DSN_NAME ,CString Db_Path )
{
   int ret;
   CString Driver, Attributes;
   Driver = "Microsoft Access Driver (*.MDB)";
   Attributes = "DSN=" + DSN_NAME +"Uid=Admin"+"pwd=" +"DBQ=" + Db_Path ;
   ret = SQLConfigDataSource(0, ODBC_ADD_SYS_DSN, Driver, Attributes);
   
   //ret is equal to 1 on success and 0 if there is an error
   If(ret==1)
        AfxMessageBox( "DSN Creation Failed");
}