I've noticewd a problem and am not sure if it's already known.
If I do this:
Memo1.Lines.LoadFromFile('name');
I get a compiler error "Syntax Error := expected but . found" of character 12
When I chagne it to
with Memo1.Lines do
LoadFromFile('Name');
it works. Seems to be a problem with accepting more that one '.' in a statement.
Shane