Not sure where to post so I will do so in both. I am trying to call a C sharp DLL which I wrote from foxpro. I keep getting entry point is not found. If I call this dll from C Sharp I have no problems. Is there something I need to do for Fox to recognize the entry point?
Fox Code:
Declare String Enrolled In C:\Fing\FingerScan.ocx;
String csUsers, String csFinger
cResults = Enrolled(cUser,cFing)
C Sharp Code:
public static string Ident()
{
Identify nDent = new Identify();
return nDent.Input();
}
public string Input()
{
return RetVal;
}
Fox Code:
Declare String Enrolled In C:\Fing\FingerScan.ocx;
String csUsers, String csFinger
cResults = Enrolled(cUser,cFing)
C Sharp Code:
public static string Ident()
{
Identify nDent = new Identify();
return nDent.Input();
}
public string Input()
{
return RetVal;
}