(Edited by HansV to make URL clickable – see Help 19)
Hello
I hope this is the right forum. Not sure if the problem is with Access or with Windows.
I developed an Access frontend on my WinXP Pro computer. It relies on two DLLs that I’ve copied into the WindowsSystem folder. Everything works properly. Move the program onto another WinXP Pro computer and copy the FE and two DLLs to the new computer. Works fine. Copy the FE and two DLLs onto a third computer using the same folders, and it fails. Access issues a message that it cannot find the DLL. Then I go into the Declare Function statement and hard-wire it to the file that I *know* exists, and it still fails. Any idea what else to look at to resolve this issue?
Option Compare Database
Option Explicit
‘ tried hard-wiring this line to fully-qualified pathname of the DLL – no joy
Declare Function pjInitPlus Lib “proj_api.dll” _
(ByVal definition As String) As Long
The DLL came with a sample database that contains an example call to the DLL. The example database literally consists of a single module. It works fine on two computers; not at all on the third computer. FWIW, the dll came from http://trac.osgeo.org/proj/%5B/url%5D near the bottom of the page is Proj4 VB Wrappers.
Thanks.