I'm calling functions from a 32-bit unmanaged DLL on a 64-bit system. What I get is:

BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)

At first, I had my projects set to the Any CPU platform, so I changed them both to x86, but this error is still occurring. That's really the only fix I know for this.

The DLLs aren't corrupt or anything, because I can use them with other programs (that I don't have the source to). I thought that perhaps it wasn't finding a dependency, but I checked and they're all there. Plus, wouldn't it throw a DllNotFoundException in that case?

What else can I do? And before you say "Use a 64-bit unmanaged DLL instead," let me point out that there isn't one. ;)

link|improve this question

What projects did you change to x86? And how do you execute them when you get the exception, through the debugger or manually? If the latter, did you notice that when you changed to x86, you got a new folder in your bin\ directory? It's basically now bin\x86\Debug for the files. – Lasse V. Karlsen Jan 7 '10 at 21:30
Can you verify that the executable is running in 32-bit mode (*32 in the process manager)? – JP Alioto Jan 7 '10 at 21:31
@Lasse V. Karlsen: Yeah, I removed the x86 bit from the output path when I changed the platform in each project. My first project is a DLL that wraps the functions in the unmanaged DLL. The second project is an executable that uses the wrapper in the first DLL. Both are set to x86. – David Brown Jan 7 '10 at 21:37
@JP: Actually, the process manager doesn't show it to be running as a 32-bit process. Why is that? – David Brown Jan 7 '10 at 21:37
feedback

6 Answers

If you try to run 32-bit applications on IIS7 (and/or 64-bit OS machine) you will get the same error. So, from the IIS7 right click on the applications' application pool and go to "advanced settings" and change "Enable 32-Bit Applications" to "TRUE".

Restart your Website and it should work.

Cheers,

Kalyan Revadi

link|improve this answer
3  
This worked for me – WraithNath Mar 1 '11 at 18:26
Also worked for me – wpearse Mar 19 at 19:20
I was trying to solve the wrong problem for a while. This answer was very useful. Thanks. – BenMaddox May 1 at 21:29
feedback
up vote 22 down vote accepted

Somehow, the Build checkbox in the Configuration Manager had been unchecked for my executable, so it was still running with the old Any CPU build. After I fixed that, Visual Studio complained that it couldn't debug the assembly, but that was fixed with a restart.

link|improve this answer
Thanks! This got me, too. – David Hodgson Oct 11 '10 at 22:05
feedback

Just had this problem also. Tried all the suggestions here but they didn't help. Found another thing to check that fixed it for me. In Visual Studio right-click on the project and open "Properties". Click on the "Compile" tab and then click on "Advanced Compile Options" at the bottom. Check the dropdown "Target CPU". It should match the "Platform" you are building. i.e. if you are building "Any CPU" then "Target CPU" should say "Any CPU". Go through all of your Platforms by making them active and check this setting.

link|improve this answer
Thanks I just got hit with this and your suggestion fixed it for me. Thanks a ton!! – MS Stp May 8 at 21:18
feedback

In my case, I am using a tiny .exe that reloads the referenced DLLs via Reflection. So I just do these steps which saves my day:

From project properties on solution explorer, at build tab, I choose target platfrom x86

link|improve this answer
feedback

Also see this answer, which solved the same problem for me.

link|improve this answer
feedback

protected by Community Jun 2 '11 at 19:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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