Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a 32 bit exe file compiled with Turbo Pascal. I need to launch it. It worked well when I had Windows 7 32 bit, but now I'm on Windows 7 64 bit, and I get the following exception:

The specified executable is not a valid application for this OS platform.

To make sure it works on 32 bit systems, I launched the C# program in a 32 bit platform - it works.

So how can I launch a 32 bit exe file in 64 bit OS?

Thanks

share|improve this question
3  
I'm confused. Are you launching a Turbo Pascal program or a C# program? Last time I used Turbo Pascal was 15 years ago and it was 16 bit. – CoderDennis Sep 28 '10 at 16:10
Are you launching the Turbo Pascal program from within C#? – CoderDennis Sep 28 '10 at 16:11
I'm launching a Pascal program from a C# program. I'm not sure, it could have been compiled with Free Pascal, which supports 32 bit OS. – Alex Sep 28 '10 at 16:25

4 Answers

up vote 11 down vote accepted

Turbo Pascal could only generate 16-bit code, there was never a version that could create 32-bit executables. Running 16-bit code requires a virtual machine that uses the real-mode emulation support in the CPU (virtual 8086 mode). This emulation is not available if the processor is running in 64-bit mode.

You cannot run 16-bit processes on a 64-bit operating system. You may have a shot at getting it going with the DOSBox emulator.

share|improve this answer
But I could launch it on a 32 bit system. – Alex Sep 28 '10 at 16:25
3  
@Alex - Yes of course, that one isn't running a 64-bit operating system. – Hans Passant Sep 28 '10 at 16:27
1  
I agree with Hans, double check that your progam is not really 16 Bit, Windows 64 dropped support for 16 bit. You can check it with a program like EXE Explorer – Scott Chamberlain Sep 28 '10 at 18:43
You are right. The pascal program was indeed 16 bit. I recompiled it with Free Pascal (I have the sources), so now it works fine. Thank you! – Alex Oct 1 '10 at 8:02

If you're launching the 32 bit exe from within a .NET (C#) application, then you'll need to set the target for your .NET app to x86. If it's set as Any CPU, then it will run as a 64 bit process on a 64 bit OS and therefore won't be able to launch the 32 bit process.

Edit: This MSDN article explains how to modify this setting: http://msdn.microsoft.com/en-us/library/5b4eyb0k.aspx

Edit 2: As Gabe points out, there shouldn't be a reason why the 64 bit app could not start a 32 bit exe. I know you can't use a 32-bit DLL from within a 64-bit app. Just thought it would be worth trying since the documentation doesn't specify if that same restriction exists when using System.Diagnostics.Process to launch an exe.

share|improve this answer
How can I do that? – Alex Sep 28 '10 at 16:26
Dennis: There's no reason a 64-bit app wouldn't be able to launch a 32-bit app. – Gabe Sep 28 '10 at 17:42
1  
@Gabe I think you're right. Maybe I was thinking of using a 32-bit DLL from within a 64-bit app. – CoderDennis Sep 28 '10 at 17:48

You can launch 32bit application from 64bit application.

C# Example 1:

var processStartInfo = new ProcessStartInfo("C:\MyApp.exe");
var process = new Process { StartInfo = processStartInfo };
process.Start();
process.WaitForExit();

C# Example 2:

System.Diagnostics.Process.Start("C:\MyApp.exe");
share|improve this answer

I don't think there is a 64 bit compiler for Turbo Pascal so I think your only choice is to compile your app targeting a 32 bit enviornment.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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