I have to replace an existing dll call that is registered and called using RegFn and CallFn respectively.

I am trying to write the dll using C# in the hope that as long as the function signature match and the dll is in the right place it will work.

so

pnHndl= RegFn("CALCULATE", "I", "I", "AJons.DLL")
pnRetVal = CallFn(pnHndl, 0)

My code is as follows:

[Guid("EAB7C2CD-2471-4BDA-90E9-F70403BAA557")]
[ComVisible(true)]
public class AJons : _AJons
{

    [ComVisible(true)]
    public int CALCULATE(int value)
    {
        return value * 2;
    }

}

Foxpro doesn't play ball I just get 'could not load library AJon.dll'

Does anyone have any experience here?

Cheers.

link|improve this question

58% accept rate
Is RegFn built into fp 2.crap? – William Mioch Oct 13 '11 at 9:40
not built in.. no.. foxtools.fil provides. – Jon H Oct 13 '11 at 15:49
feedback

1 Answer

up vote 2 down vote accepted

From what I can see, those really old RegFn and CallFn are for calling Win32 native Dlls - completely different from COM.

What you need to create a Win32 dll that will work with those functions is C++.

What you should do (if you HAVE to keep using FoxPro) is at least use the latest version of VFP.

written on my iPhone

Update 1

1) Just in case I wasn't clear, you cannot make this kind of DLL from .NET.

2) Have a look at this link here for a very simple example of how to write a Win32 dll.

link|improve this answer
Would such a dll need to be 16bit also? – Jon H Oct 13 '11 at 15:49
As evident in the name, Win32 DLLs are 32 bit. I have updated the answer with a link to a simple example. – William Mioch Oct 13 '11 at 23:29
I have identified a more central interception point for my code. Although your answer appears sound I am reluctant to mark as 'the answer' as I haven't test it! If I do, I will. – Jon H Oct 18 '11 at 8:49
Thanks Jon! Much appreciated – William Mioch Oct 19 '11 at 11:52
People will stop answering your questions if you don't accept any answers. 45% is a very poor acceptance rate. – ThePower Nov 16 '11 at 12:57
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.