logman0u812 wrote: > property Data: TStrings read GetRawTable write > SetRawTable;
You haven't shown the implementations of the property accessors. It's rare to have a property reader for TStrings properties, and it's essential to have a property writer for such properties. Usually, TStrings properties are declared like this: property Data: TStrings read FData write SetData; The SetData procedure is always implemented like this: procedure TWTParse.SetData(const Value: TStrings); begin FData.Assign(Value); end; -- Rob ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

