I have a .NET v2.0 Dll that exposes a few classes to COM. The assembly is called BLogic.DLL

I'm calling these classes from a legacy visual basic 6.0 application. I can generate and EXE file and if I have Blogic.dll in the same folder as the EXE, the program runs without a hitch.

However If I try and launch the same program within the VB6 debugger I get a:

   Automation Error    
   The system cannot find the file specified

I assume when I'm running in the debugger, the PLogic.dll file can't be found. I tried putting it in the System32 folder, and the same folder as the VB6.EXE file, but I still get the same error.

Other facts that may help:

PLogic.dll is NOT a strongly-named assembly. It depends on a 3rd party reference that isn't strongly signed so VS doesn't let me strongly sign it. However the 3rd party functionality isn't being called by the VB6 code, and it is not ComVisible.

link|improve this question

73% accept rate
feedback

4 Answers

up vote 3 down vote accepted

If you don't put your ComVisible .NET assembly in the GAC then you have to use the /codebase option with Regasm.exe

link|improve this answer
If that's true, why can I run it successfully when I'm not in the vb6 ide debugger? Secondly, if I can't strongly sign the assembly how can I either put it in the GAC or use the codebase option? – Aheho May 25 '10 at 18:54
The EXE folder is different when you run the IDE. Use the normal Regasm.exe command line, just add /codebase. – Hans Passant May 25 '10 at 19:06
Got it working. Thanks. I didn't realize that you can just ignore the warning you get with the /codebase option when you dont have a strongly-named assembly. – Aheho May 25 '10 at 19:30
Great question and great answer! I was wondering why my VB6 dlls stopped working after unregistering and re-registered them... I was missing the codebase option... Thanks. – naruu Mar 15 '11 at 15:57
feedback

It's been a while so I might be getting this confused but I have some memory that while debugging VB6 supporting dlls should be in the project folder, so in the same folder as the project file.

Edit: Just realised, since it's a COM DLL, the location shouldn't matter since it should have been registered, I can't remember how that works with .NET COM Dlls but I'd suggest trying out Regasm (since it's not got a strong name possibly you'd have to create the Tlib instead and the run Regtlib on that).

link|improve this answer
I already ran regasm I used the /tlb and /verbose options – Aheho May 25 '10 at 18:16
also I tried the PLOGIC.DLL in the project folder. Same error. – Aheho May 25 '10 at 18:18
Well, when I got desperate about COM I'd search through the registry for any instances of the DLL and interfaces etc and delete them (obviously being very careful!) and then reboot the PC and do a fresh registration. Not the best solution but sometimes it works. I'd also consider Jan's suggestion that it might be something else failing, maybe could try that by moving your compiled exe and the dll to a new folder and see what happens. – ho1 May 25 '10 at 18:25
feedback

Just a thought: the error may be a "normal" exception within the DLL instead of an interop problem. The reason that this exception only occurs when debugging in VB6.exe may be that relative paths (./something.txt) are relative to the VB6.exe when debugging.

link|improve this answer
The error occurs when I create my first object from that assembly. The constructor for that class doesn't reference any external files. In fact, it just sets one private string member. Nothing that would throw an IO exception. – Aheho May 25 '10 at 18:21
feedback

I had a similar issue that was solved by creating a VB6.exe.config file with the following content and placed it in the same folder as VB6.exe (C:\Program Files\Microsoft Visual Studio\VB98 on my computer):

<?xml version="1.0" ?>
<configuration>
    <startup>
        <supportedRuntime version="v2.0.50727" />
    </startup>
</configuration>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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