You may sometimes get in a situation where a required DLL has not been registered automatically into the Windows registry by a dependent application and you may have to register the DLL manually. You can do this from the 'Run...' dialogue of the Start Menu (or alternatively from a command prompt); type regsvr32 followed by the DLL name or the fullpath to the DLL file followed by the file name,
for example regsvr32 C:\Program Files\MyApp\MyApp.dll
Be sure to leave a space between the regsvr32 command and the path+filename.
From Start Menu:
You should get a confirmation dialogue box telling you the DLL was registred succesfully, for example "DllRegisterServer MyApp.dll succeeded"
No comments:
Post a Comment