hi
i have a text file contains fomat given below..
"NewPrepaid_SSKZ1202_18102008124759"|"TPNCR02_24-10-2008_001048"|"10/30/2008"|"978"|"326"|"0"|"16"|"0"|"EXPORTED"
all i need to do is to split it ( | separator ) and load it into text boxes one by one
.split('|') works fine but unable to load it back into text boxes
any help
thanks
faraz akramPosted Mar 8, 2009, 11:54 AM
thanks Pal....
It really works
faraz. :)
Vimal KandasamyPosted Mar 5, 2009, 7:04 AM
hi,
that split('|') method will return an array of strings na?.... then u can iterate stringarray...
like
TextBox1.Text=stringarray(0);
TextBox2.Text=stringarray(1);