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...
Hello I am making a simple snake game with images using that:
private void rendering() {
while (true)
{
if (pbCanvas.InvokeRequired)
{
//pbCanvas.Refresh()...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.