Thanks and please excuse me for the small font.
1. I need to convert a delimted string to a tStringList.
stNCRConstList.Text.Split('\n',MyString); generates and error.
2. I need to convert a tStringList to a delimited string.
MyString := stNCRConstList.Text.Join('\n',stNCRConstList.Text); compiles, but it seems pretty odd that I need a second parameter. I have not tried how it works.
Maybe logic of Split and Join is inverted?