Delphi .NET (2) Database (71) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
Access violation when calling a non-delphi VCL created DLL
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Question:
Access violation in Delphi IDE when calling a C/C++/Delphi BDE API DLL: How do I resolve this access violation?
Answer:
There is a BDE API function called DbiDllExit which can be prototyped the same as DbiExit. Place the prototype in your idapi.h (C / C++) and call DbiDllExit just before DbiExit. For Delphi, simply call DbiDllExit before DbiExit.
Comments:
|