aguero 0 Newbie Poster

A lot of links to free C# beginner tutorials here:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=212562&SiteID=1

aguero 0 Newbie Poster

Is there a special reason you want to display the text the user entered in textbox1 in textbox2 using a streamreader?

You could do this very easily, without having to use a streamreader, just by assigning the value of the textbox1.Text property to the textbox2.Text property.

textBox2.Text = textbox1.Text;
aguero 0 Newbie Poster

You need to set the savefiledialog filter property.Have a look at the example on MSDN:
http://msdn2.microsoft.com/en-us/library/system.windows.forms.filedialog.filter.aspx

The filter property is of type string.