hi,
using vcl , and trying to use TstringList with ascii(1) as delimiter
TStringList * templist3 = new TStringList;
templist3->LoadFromFile(" xxx.txt");
mylist = new TStringList;
mylist->Delimiter = static_cast<cha r>(1);
mylist->StrictDelimite r=TRUE;
mylist->DelimitedText= templist3->Text.c_str() ;
this code works fine and all...