How can one save an Object, in its current state, to a file? So that it can immediately be read and restored with all its variables.
|
2
|
|||
|
|
|
What you are looking for is called object persistance. This article might help, and there are many others if you google for "delphi persisting objects". |
||
|
|
|
|
There is a good tutorial here. Keep in mind that you have to have RTTI (run time type information) to save an object at run-time using this approach, so it will only capture published properties of a class. |
||
|
|
|
|
There's also a roll-your-own XML method here on S.O. |
||
|
|
|
|
If you descend your object from TComponent, you can use some built-in functionality to stream the object to a file. I think this only works well for simple objects. Some sample code to get you started:
|
||
|
|
|
|
As already stated, the easiest way is to use a Stream and its WriteComponent and ReadComponent methods. You may find some code you could use in these SO answers: Replace visual component at runtime in Delphi, Duplicating components at Run-Time |
||
|
|
|
|
You've already gotten some good answers to your question. Depending on what you're actually doing, it might be desirable to use a pre-built library or component to save objects. This is an inexpensive and nifty library/component set that makes it trivial to persist and restore objects, and pretty easily (i.e., with a little bit of code) accommodates persisting even unpublished members of an object: http://www.deepsoftware.ru/rsllib/index.html Not something that's rocket science, but if you're doing a lot of this sort of thing this component provides a nice framework for it. Developer Express also includes a general purpose cxPropertiesStore component as part of the ExpressEditors library that comes with some of their components. |
|||
|
|
|
|
|
||
|
|
