GUI's are easy. Download Visual Studio C# 2005 Express, and prepare to be daunted at first. Making GUI's are easy. Simple matter of drawing them on the form. Follow this simple tute on making a simple interface that browses for a file, and displays the file name in a textbox. Load up Visual Studio Express 2005 then select File->New->Windows Application 1. Create a textbox on the form by selecting it from the toolbox on the left of the screen (You may need to show it by selecting View->Toolbox). 2. Drag it out the size you want. 3. Create a button, place "..." in the text properties of the button. 4. Double click on the button on the form to create the default event for it (button1_Click()) 5. In the buttons event add the following... private void button1_Click(object sender, EventArgs e) { OpenFileDialog fd = new OpenFileDialog(); if(fd.ShowDialog(null) == DialogResult.OK) { textBox1.Text = fd.FileName; } } Select Debug->Start Debugging to run your program. Click the button, and browse for a file. Simple first application in C#!