c# dll not found -
I am writing a small AOL IM application in C #. I have all the DLLs I need and I am able to compile and run my app. However, when it runs, I get an error which says
"Unable to load DLL 'Acccore.dll': The specified module was not found. (HRESULT: Exception from 0x8007007E)"
I understand that this means that the acccore.dll file was not found, but I do not know why I tried to put it in C: \ Windows \ system 32 and it was also created in the debug directory when Project Visual Studio Is built in. Can anyone tell me how to apply this, where is this DL located?
Thank you!
I did some research and it seems that acccore.dll is a COM DLL file. This means that you need to run:
regsvr32.exe C: \ Windows \ System32 \ acccar.dll
In this registry, the COM DLL You will register your own You can use that DLL in the NET code. Check the link:
So you will need to use P / invoke to use DL / DLL (I think there is some example code of AOL SDK Which you can use).
Comments
Post a Comment