I've got a VB6 app that uses a dll called "decrypt" which basically just decrypts some licence keys.
This dll usualy sits in the windows/system32 folder and i'm referencing it in VB6 using the following.
Private Declare Function IsLicenseKey Lib "decrypt.dll" Alias "IsLicenseKey" (ByVal chrLicenseKey As String, ByVal intKeyLength As Long) As Long
The problem i'm having it that for some reason i'm now getting the following error in the event log
The VB Application identified by the event source logged this Application Utility: Thread ID: 3380 ,Logged: Runtime Error
Number:48
Description:File not found: decrypt.dll
ProcName:Utility.LicenceKeys.CheckLicenseKey
Source:Utility
AppVersion:1.1.1
AppPath:C:\rdev\app\Com\
This has worked no problem untill a few days ago.
The decrypt.dll is definatly in the system32 folder and because its not a COM dll you can't register it using regsvr32, you just place it in there and the app can usually find it/
Anyone have any ideas and suggestions ?
Cheers
This dll usualy sits in the windows/system32 folder and i'm referencing it in VB6 using the following.
Private Declare Function IsLicenseKey Lib "decrypt.dll" Alias "IsLicenseKey" (ByVal chrLicenseKey As String, ByVal intKeyLength As Long) As Long
The problem i'm having it that for some reason i'm now getting the following error in the event log
The VB Application identified by the event source logged this Application Utility: Thread ID: 3380 ,Logged: Runtime Error
Number:48
Description:File not found: decrypt.dll
ProcName:Utility.LicenceKeys.CheckLicenseKey
Source:Utility
AppVersion:1.1.1
AppPath:C:\rdev\app\Com\
This has worked no problem untill a few days ago.
The decrypt.dll is definatly in the system32 folder and because its not a COM dll you can't register it using regsvr32, you just place it in there and the app can usually find it/
Anyone have any ideas and suggestions ?
Cheers