vote up 0 vote down star

I would like to copy a whole TClientDataSet instance into another so I can recover any changes made in the original one. I've tried to saveToStream, to copy the data property but in all cases I loose the fields configurations (displayLabel, size, etc.)

Is there a way to do what I'm trying?

flag

3 Answers

vote up 1 vote down check

Delphi will only stream published properties. You may need to tweak things a bit to get everything out & back correctly. See http://www.delphipages.com/news/detaildocs.cfm?ID=145 for an example of the hooks.

-- MarkusQ

link|flag
link is now dead. – Dano Jul 1 at 21:18
vote up 1 vote down

This should work:

DestClientDataSet.Data := SrcClientDataSet.Data;

link|flag
vote up 0 vote down

Did you try TClientdataset.Clonecursor ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.