Home > Software engineering >  DOMDocument40 use error
DOMDocument40 use error

Time:12-01

Dim icdDocument As New DOMDocument40

'Set the basic document properties
IcdDocument. Async=False
Here is to write the code in the Access2003, an error occurs, prompt the Run - time error '429' : ActiveX component can 't create object. How to solve this problem?

Use the following method to register the DLL, still won't do,
Regsvr32 "C:/Program Files/Common Files/Microsoft Shared/DAO/dao360. DLL"
Regsvr32 "C:/Windows/system32/scrrun. DLL"

Is xmldom 40 this not installed? How do you know whether installed? C: \ Windows \ System32 don't have the DLL,

CodePudding user response:

In a 64 - bit Windows:
64 exe and DLL in the directory c: \ Windows \ sys tem32 directory.
32 bit exe and DLL in the directory c: \ Windows \ sys wow64 directory.
So pay attention to:
In win64 system registered under 32-bit ocx DLL to 32 ocx or copy the DLL to the c: \ Windows \ syswow64 \ directory,
And registered to c: \ Windows \ syswow64 \ regsvr32 XXXXXXX ocx or DLL
A 64 - bit Windows platform attention point of the file system redirection http://www.cnblogs.com/jiake/p/4981555.html
64 - bit Windows platforms attention point of the registry to redirect http://www.cnblogs.com/jiake/p/4956218.html
  • Related