vote up 2 vote down star

How do I force my app to run 32 bit on the 64 bit machine? The code is written in C#.

flag

5 Answers

vote up 12 vote down check

Right click your project, and select properties.

In properties, select the build tab. Under platform target, select x86.

Hit Ctrl+Shift+S to save all files, right click the solution and select "Clean" to get rid of old binaries. Any builds after that should be 32 bit

link|flag
vote up 1 vote down

Assuming this is a Winforms, console app, or Windows service you have to build the exe for x86 instead of Any CPU. It's in the Configuration Manager.

link|flag
vote up 3 vote down

If you go to Configuration Manager in Visual Studio you can set the platform to x86 or x64.

link|flag
vote up 0 vote down

Can anyone tell me why my 32-bit app fails on 64-bit computers? How does the 64-bit computer run certain 32-bit machines with no issue, but it crashes running my program? He said it also happens with programs from smaller publishers. What do major publishers do to get this to work?

link|flag
vote up 0 vote down

When I said "he", I meant my friend. I sent my friend my 32-bit app and he has 64-bit Vista.

link|flag

Your Answer

Get an OpenID
or

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