Search results for query: *

  1. J

    Question Using threads to improve GUI performance

    Great answer I suspect you have nailed it. To minimize the contention for shared files, I think I will simply copy the file spawned by the executable and read from the copied file in the GUI. Thanks for the suggestion.
  2. J

    Question Using threads to improve GUI performance

    I have developed a GUI in c# .NET 3.5 using VS2008. One function of the GUI is to launch an executable written in Fortran using the Process class in System.Diagnostics. The code to do this is: ProcessStartInfo si = new ProcessStartInfo(path-to-executable, args); Process runProc = null...
Back
Top Bottom