I have a big prolem here.... i have created a vb appln. in which it reads and write to a texr file users iformation. I have used "|" to separate the records and ";" to show difference between column
i have content like
tom;03/09/2004;john|david;02/01/1999;elizabeth and so on.......
these are displayed int he list box as
tom;03/09/2004;john
david;02/01/1999;elizabeth
but i wnat them to be displayed as
Name birthDate Parent's Name
------------------------------------------------
tom 03/09/2004 john
david 02/01/1999 elizabeth
and so on.....
i want them in the listbox...i dont know..how do i bring them to this format..can any one suggest plz.
I could have split them wiht ; and repalce them with soem spaces but..i need exact formatting..in soem cases...if the name length is too small then the b'date would come near..i was suggeted to use formatstr() function but i dotn know how it works...for my pgm.
i have content like
tom;03/09/2004;john|david;02/01/1999;elizabeth and so on.......
these are displayed int he list box as
tom;03/09/2004;john
david;02/01/1999;elizabeth
but i wnat them to be displayed as
Name birthDate Parent's Name
------------------------------------------------
tom 03/09/2004 john
david 02/01/1999 elizabeth
and so on.....
i want them in the listbox...i dont know..how do i bring them to this format..can any one suggest plz.
I could have split them wiht ; and repalce them with soem spaces but..i need exact formatting..in soem cases...if the name length is too small then the b'date would come near..i was suggeted to use formatstr() function but i dotn know how it works...for my pgm.