threading

  1. 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...
  2. C

    Problem when rendering my game.

    Hello I am making a simple snake game with images using that: private void rendering() { while (true) { if (pbCanvas.InvokeRequired) { //pbCanvas.Refresh()...
Back
Top Bottom