I have 5 text box, after fill up those boxes, I want to save it as file, but the condition is when I am opening it the five data will show in five text boxes.
I can save only one textbox as a file & can open it, but I don't do tat in five different text boxes.
five textbox data like,
textBox1.text ="ABC"
textBox2.text ="DEF"
textBox3.text ="GHI"
textBox4.text ="JKL"
textBox5.text ="XYZ"
& when it will open this 5 data will show in those 5 text boxes not in a single one.
Thank you in advance!
Loading

Tanmay SarkarPosted Jul 5, 2010, 10:16 PM
You give me the perfect idea, which i am searching for.
Thank you so much. :)
Marimuthu ArigovindasamyPosted Jul 5, 2010, 9:42 PM
Sam HobbsPosted Jul 5, 2010, 5:56 PM
Tanmay SarkarPosted Jul 5, 2010, 12:20 PM
I hope what i am written as a question is not good or comfortable.
I will try to save five different data in a single file, & when i open the file the five different data will appear on those five text box.
How can i save it in a single file.
I can save only one text box as a file (like *.txt).
I upload my simple code also.
Mahesh ChandPosted Jul 5, 2010, 11:56 AM
ButtonClickEventHandler
{
textBox1.text ="ABC" ;
textBox2.text ="DEF";
textBox3.text ="GHI";
textBox4.text ="JKL" ;
textBox5.text ="XYZ";
}