In Register Conduit or Unregister (regsvr32 contacts.dll) send me the next messages:
1 : (pfgHsLog: C:\Archivos de programa\Palm\hslog20.dll => 1342177280)
2 : (DllRegisterServer en contacts.dll se realiz con xito.) or (DllUnregisterServer ....)
3 : (La instruccin en "0X00000000" hace referencia a la memoria en "0X00000000". La memoria no se puede "read")
How i fix the last error message?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It's hard to be sure with the foreign language, but it sounds like a nil pointer reference. This in turn could have been caused by such things as a missing DLL or an incorrect version or corrupt DLL. The best way to go is always to debug to find the problem.
In this case, since it's in the Regsvr32 code, you should set up Regsvr32 as the host application in the Delphi IDE, with the project's DLL filename as a parameter. That way, you can set up breakpoints in the code and trace through what's happening
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In Register Conduit or Unregister (regsvr32 contacts.dll) send me the next messages:
1 : (pfgHsLog: C:\Archivos de programa\Palm\hslog20.dll => 1342177280)
2 : (DllRegisterServer en contacts.dll se realiz con xito.) or (DllUnregisterServer ....)
3 : (La instruccin en "0X00000000" hace referencia a la memoria en "0X00000000". La memoria no se puede "read")
How i fix the last error message?
Thanks
It's hard to be sure with the foreign language, but it sounds like a nil pointer reference. This in turn could have been caused by such things as a missing DLL or an incorrect version or corrupt DLL. The best way to go is always to debug to find the problem.
In this case, since it's in the Regsvr32 code, you should set up Regsvr32 as the host application in the Delphi IDE, with the project's DLL filename as a parameter. That way, you can set up breakpoints in the code and trace through what's happening
Ok, i will try it
Thanks