ok I have some existing code calling a .dll file:
Public Declare Function LogGet Lib "somedll.dll" (ByVal parma As Long, ByVal parmb As String, ByRef parmc As Integer) As Integer
This worked fine forever, but all of a sudden on a new computer I just got (win2k) everytime that function is called it gets an "error 53 - file not found",
but somedll.dll is in the path as it always is. I even fully qualify as c:\dir\somedll.dll and that still comes back with file not found. What the heck is going on?
Is it a win2k vs NT thing? My coworker just reinstalled his PC same way and isn't having this problem. no differences at all in setups.
ideas???
Public Declare Function LogGet Lib "somedll.dll" (ByVal parma As Long, ByVal parmb As String, ByRef parmc As Integer) As Integer
This worked fine forever, but all of a sudden on a new computer I just got (win2k) everytime that function is called it gets an "error 53 - file not found",
but somedll.dll is in the path as it always is. I even fully qualify as c:\dir\somedll.dll and that still comes back with file not found. What the heck is going on?
Is it a win2k vs NT thing? My coworker just reinstalled his PC same way and isn't having this problem. no differences at all in setups.
ideas???