Robert Pointon wrote:
procedure TInhertProducts.SetMyList(const Value: TStrings);
begin
FMyList := Value;
end;
Right here is where you lose any trace of the instance of TStringList
that you created in the constructor. Replace the above with
FMyList.Assign(Value);
This will copy the contents of Value to FMyList.
--
Sly
This message and its attachments may contain legally privileged or confidential
information. This message is intended for the use of the individual or entity
to which it is addressed. If you are not the addressee indicated in this
message, or the employee or agent responsible for delivering the message to the
intended recipient, you may not copy or deliver this message or its attachments
to anyone. Rather, you should permanently delete this message and its
attachments and kindly notify the sender by reply e-mail. Any content of this
message and its attachments, which does not relate to the official business of
the sending company must be taken not to have been sent or endorsed by the
sending company or any of its related entities. No warranty is made that the
e-mail or attachment(s) are free from computer virus or other defect.
_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi