This is my first time doing this -- I am trying to make a call to a VERY simple vb6 .dll from Progress 9.1D and I am getting the following error:
Error - Could not find the entrypoint _fnEncrypt@0 (3260)
The code I am using to call the .dll is below:
/* Run the DLL function */
RUN fnEncrypt.
/* Procedure Definition */
PROCEDURE fnEncrypt EXTERNAL "UniCrypt.dll":
END.
The vb6 .dll code is as follows:
Public Function fnEncrypt()
MsgBox "Hello"
End Function
I've already tried some suggestions that were posted a while back but nothing has helped. I would really appreciate anyone's help on this one!!
Error - Could not find the entrypoint _fnEncrypt@0 (3260)
The code I am using to call the .dll is below:
/* Run the DLL function */
RUN fnEncrypt.
/* Procedure Definition */
PROCEDURE fnEncrypt EXTERNAL "UniCrypt.dll":
END.
The vb6 .dll code is as follows:
Public Function fnEncrypt()
MsgBox "Hello"
End Function
I've already tried some suggestions that were posted a while back but nothing has helped. I would really appreciate anyone's help on this one!!