Hi,
I want to use external DLL in VFP. Fox example i have created on DLL file in
Visual Basic using ActiveX DLL.
When i use it with VB application it works fine but in VFP 8.0 it gives an
error message i.e.
Cannot find entry point <FunctionName> in DLL.
Below is the example code:
Class Code in VB-ActiveX DLL
''''''''''''''''''''''''
Public Function Multiply(int_x As Integer, int_y As Integer) As Integer
Multiply = int_x * int_y
End Function
In VFP I am using it as:
DECLARE Integer Multiply IN tstProject.Dll integer @x, integer @y
x = 2
y = 3
?Multiply(@x , @y) && Gives an error message mentioned above
?Multiply(x , y) && Same error message
Please let me know if i am doing any mistake.
--
NR