I added a TTIListbox, linked it to the Items of the "normal" Listbox (TIListbox1.Link.TIObject = Listbox1, TILisbox1.Link.PropertyName = 'Items') --> no effect, neither at runtime, nor at designtime: I don't see the Listbox.Items in the TIListbox.
The same when I link a TIMemo and a "normal" Memo via the "Lines" property.
TStringList only has public properties...
Why don't you simply assign the stringlist to the Lines of a "normal" TMemo? (Memo1.Lines.Assign(SL))
With Assign() you can copy the whole content of a TStringList to another.