Novice words first clear: (But now 32 people to tell the truth has to be eliminated, xp,2000 or anything has been eliminated early
X86 represents a 32-bit system x64 represents a 64-bit system
General installation methods for DLL controls:
First, if you run a software or compile a program when prompted missing, can't find a DLL and other similar tips, now Baidu Search, and then the DLL file download down
Second, copy the file directly into the system directory: 1, Windows 95/98/me system, copy the DLL to the C:\Windows\System directory. 2, Windows nt/2000 system, copy the DLL to the C:\WINNT\System32 directory. 3, Windows xp/win7 system, copy the DLL to the C:\Windows\System32 directory. 64-bit under SysWOW64
Third, open "start-run-input regsvr32 xxx.dll", enter to resolve.
Or do the following bat, if you do not have permission, first put Xxx.dll in the specified directory and then run bat
@echo Start registering copy xxx.dll%windir%\system32regsvr32%windir%\system32\xxx.dll/s@echo xxx.dll Registration Successful @pause@echo start registering copy Xxx.dll%windir%\syswow64regsvr32%windir%\syswow64\xxx.dll/s@echo Xxx.dll Registered Success @pause
How to install DLL files