Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7508133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:37:36+00:00 2026-05-29T22:37:36+00:00

I have a fortran executable that I’m trying to run with a process. The

  • 0

I have a fortran executable that I’m trying to run with a process. The fortran executable requests a file from the user, performs an operation to find a solution, and afterwards if there are multiple solutions, it will ask the user if the would like to find the most optimal solution. My code here that I have provided seems to always crash when I call wait for input idle, as there doesn’t seem to be a gui. I’m new to using processes so if someone could help me out, that would be appreciated.

Thanks.

Edit: I forgot to mention that the fortran executable generates a text file after to provide results to the user. When I remove the wait for input idle, it no longer crashes but the resulting text file is no longer generated. Is the executable not running properly?

        Process exeProcess = new Process();
        exeProcess.StartInfo.FileName = @"...\marcus12.exe";
        exeProcess.StartInfo.UseShellExecute = false;
        exeProcess.StartInfo.RedirectStandardError = true;
        exeProcess.StartInfo.RedirectStandardInput = true;
        exeProcess.StartInfo.RedirectStandardOutput = true;
        exeProcess.Start();
        //exeProcess.WaitForInputIdle();
        exeProcess.StandardInput.WriteLine(Path.GetFileName(filePath));
        //exeProcess.WaitForInputIdle();
        exeProcess.StandardInput.WriteLine("Y");
        exeProcess.WaitForExit();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T22:37:36+00:00Added an answer on May 29, 2026 at 10:37 pm

    WaitForInputIdle() is used when the process you launch is a Windows application with message loop. In your case it’s simple console application.

    Therefore all you need is to exclude two WaitForInputIdle() calls from the code:

    Process exeProcess = new Process();
    exeProcess.StartInfo.FileName = @"...\marcus12.exe";
    exeProcess.StartInfo.UseShellExecute = false;
    exeProcess.StartInfo.RedirectStandardError = true;
    exeProcess.StartInfo.RedirectStandardInput = true;
    exeProcess.StartInfo.RedirectStandardOutput = true;
    exeProcess.Start();
    exeProcess.StandardInput.WriteLine(Path.GetFileName(filePath));
    exeProcess.StandardInput.WriteLine("Y");
    exeProcess.WaitForExit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some Fortran 77 source files that I'm trying to convert from a
I have an application that we're trying to migrate to 64bit from 32bit. It's
I have this old Fortran executable that can only be accessed through its GUI,
I have a program in Fortran that saves the results to a file. At
I have a C file generated with f2c (Fortran to C translator) that contains
I have a fortran dll, and I want to know the assemblies that it
I have some old fortran 77 I'm trying to port to gcc on Windows.
I have a bash script that runs a simulation program written in Fortran 90,
I have a FORTRAN 95 program that needs to make some calls to the
I have a problem with passing of an array from Fortran to a c

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.