The tpersistent tag has no wiki summary.
6
votes
1answer
163 views
Runtime design - storing and loading form layout (recursively?)
I'm creating an application which layout needs to be fully configurable on client-side. It means each component (control) can be resized and moved around the form, new controls can be added, or some ...
6
votes
1answer
143 views
Ignore unknown properties when reading object from stream
We have an application that stores project information in a file by descending from TPersistent. We use TSteam.ReadComponentRes to read from a stream to the object.
We would like to be able to open ...
3
votes
2answers
265 views
Save/Load TObject(TPersistent) to XML
everybody.
I'm trying to save my class:
TA= class(TPersistent)
private
FItems: TObjectList<TB>;
FOnChanged: TNotifyEvent;
public
constructor Create;
destructor Destroy; ...
2
votes
1answer
224 views
Collection editor does not open for a TCollection property in a TPersistent property
I've got my custom collection property which is working great when it is a direct member of my component.
But I want to move the collection property to a TPersistent propery within my component. And ...
1
vote
1answer
126 views
Collection Indexing Strategy
I have a collection of TPersistent objects. I want to index them by their memory location (as main index) and by their properties (using rtti). A collection may have several property based indexes ...
1
vote
3answers
283 views
Delphi Streaming Problem
I'm using a blob field in a kbmMemTable to store a custom component that I've developed from TComponent and I use the read and write component stream methods of the TReader to read and write the ...
1
vote
0answers
243 views
Persisting more than one object in Delphi 7 [closed]
This is not a duplicate but a follow-up to "Persistent Objects in Windows XP/Delphi 7."
I need to persist more than one object in Delphi 7, and the objects are a class family. RRUZ's answer suggests ...
1
vote
1answer
429 views
TPersistent + interface, Delphi
I need a class that is based on TPersistent (so it stores the RTTI) and includes default Interfaces handling (QueryInterface, _AddRef, _Release) ... what is the class name I'm looking for?
0
votes
2answers
437 views
How can a Delphi TForm / TPersistent object calculate its own construction and deserialization time?
For performance tests I need a way to measure the time needed for a form to load its definition from the DFM. All existing forms inherit a custom form class.
To capture the current time, this base ...