Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.1K

2 Posted Topics

Member Avatar for Soter4u

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. [code]textBox2.Text = textbox1.Text;[/code]

Member Avatar for scru
0
116
Member Avatar for shadowrider

You need to set the savefiledialog filter property.Have a look at the example on MSDN: [URL]http://msdn2.microsoft.com/en-us/library/system.windows.forms.filedialog.filter.aspx[/URL] The filter property is of type string.

Member Avatar for aguero
0
80

The End.