Announcement

Collapse
No announcement yet.

Cannot register DAO

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Cannot register DAO

    Sorry i have a problem to register DAO350.dll for a error wend register DLL but the error is not true!!
    I receive a error to application, is possible to bypass error?
    thank

  • #2
    It is generally not a good idea to attempt to install DAO by adding the DLL to your installer. It is better if you use the Microsoft Data Access Components redistributable to deploy this technology on the target computer. This file is frequently named MDAC_TYP.exe, but it may have a different name. Using the redistributable package will make sure that the components are deployed in their proper order. You also should make sure that installing DAO on the target computer is actually required - and supported - because it is being distributed with the Windows operating system for years. A newer version may already be installed.

    Ulrich

    Comment


    • #3
      Ok thank but i possible to not visible error?

      Comment


      • #4
        Is possible to bypass the notify error? You send the procedure? Thank

        Comment


        • #5
          Code:
          function g_boolRegister_DAO350DLL() strCommonFilesFolder = SessionVar.Expand("%CommonFilesFolder%"); strDAOFolder = strCommonFilesFolder .. "\\Microsoft Shared\\DAO" ; System.RegisterActiveX(strDAOFolder .. "\\DAO350.DLL"); --Check to see if an error occurred. error = Application.GetLastError(); -- If an error occurred, display the error message (skip if Vista). if not g_boolIsVista() then if (error ~= 0) then Dialog.Message("Error - RegisterActiveX - DAO350.DLL", _tblErrorMessages[error], MB_OK, MB_ICONEXCLAMATION); end end end

          Comment


          • #6
            Sorry i have a problem to register DAO350.dll for a error wend register DLL but the error is not true!!
            I receive a error to application, is possible to bypass error?
            thank

            Comment

            Working...
            X