Hi! strCompleteText: String; MyStringList: TStringList; How do I convert strCompleteText (containing LF's) into strings in MyStringList? (The other way is quite simple.) TIA, /Tore (22 years ago, 1-Oct-02, to lugnet.cad.dev)
"Tore Eriksson" <tore.eriksson@mbox3...wipnet.se> skrev i meddelandet news:H3B9uK.Jo6@lugnet.com... (...) MyStringList? MyStringList.Text := strCompleteText; As long as you want one element in MyStringList for each LF-separated string in (...) (22 years ago, 1-Oct-02, to lugnet.cad.dev)
(...) D'ooooh, I tried MyStringList.Add(str...leteText); and had all strCompleteText in MyStringList.Strings[0]! Now it works. Thanks a lot! /Tore (22 years ago, 1-Oct-02, to lugnet.cad.dev)