I am not able to add a dll in my VB6 project. It is located in project folder.
I made a declaration in my form
Private Declare Function FindPattern Lib "iEdit_Find.dll " (ByVal lpszPattern As String, ByVal lpszSource As String, ByVal nMatchCase As Long, ByVal nStart As Long, nlen As Long) As Long
but when I run my project it gives the following runtime error:
Run Time Error :53
File not found : iEdit_Find.dll
When I try to add it by Project>>Refere nces>>Browse>>s elect the dll it says:
Cannot add reference to the specified file.
I made a declaration in my form
Private Declare Function FindPattern Lib "iEdit_Find.dll " (ByVal lpszPattern As String, ByVal lpszSource As String, ByVal nMatchCase As Long, ByVal nStart As Long, nlen As Long) As Long
but when I run my project it gives the following runtime error:
Run Time Error :53
File not found : iEdit_Find.dll
When I try to add it by Project>>Refere nces>>Browse>>s elect the dll it says:
Cannot add reference to the specified file.
Comment