Click here to Skip to main content
15,905,913 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
in c sharp window application how can read text from one text box and then how can copy those to another text box using system.io.......??
want to copy the text from text box to text box or from one file to another file...??
Posted

1 solution

Hi,

Your question is not clear.
Still if you want to Copy to TextBox to TextBox then

C#
TextBoxDest.Text=TextBoxCpyFrm.Text;

File to File
C#
File.Copy("From File Path","To File Path",true);
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 15-Jan-13 2:04am    
Please pay attention for other OP's questions: re-posts. We should remove certain "questions", especially re-posts.
—SA
Suvabrata Roy 15-Jan-13 3:46am    
Ok

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900