Load a third party Library

farid

farid

Member
Hi all,

I'm trying to load a non jde library (TESTDLL.dll), using B0000192, I continue to have the same error: "Cannot open/initialize DLL" ; I'm passing the name of the Library to B0000192, and I put the TESTDLL.dll under system\bin32, dv910\bin32. Is it not enough?? any ideas???
 
If you are going to load up a custom DLL you are better off writing your own custom business function using LoadLibrary and GetProcAddress. I have done this many times and it is a great way to extend the functionality of E1 using a 3rd party library. You should be able to find resources out there that discuss how to use the WinAPI functions above. If interested there is a white paper in my library or in JDEtips.com
 
Back
Top