Posts Tagged ‘C#’

Cracker Barrel Triangle Game

Thursday, November 6th, 2008

This is another post that is a product of an…

Read More

System.Diagnostics.Process to run an outside application - Part 2

Tuesday, September 30th, 2008

Last time, I demonstrated how to use System.Diagnostics.Process to launch an outside program, including the use of command-line parameters. This time, I’ll go a little deeper and show how to achieve a greater deal of control over how the program starts up as well as put in place the pieces necessary to start to exert some control over said program. To accomplish this, we will be looking at the ProcessStartInfo and Process classes in the System.Diagnostics namespace.

Read More

Embedding Lua and C#

Monday, September 29th, 2008

I make it a point to learn 2 new programming…

Read More

Using System.Diagnostics.Process to run an outside application

Tuesday, September 16th, 2008

Introduction

Sometimes it is useful to be able to run an…

Read More