i used in the past and it worked fine
TMemoryStream* pms = new TMemoryStream();
ListBox1->Items->SaveToStream(pms);
pms->Position = 0;
Memo1->Lines->LoadFromStream(pms);
delete pms;
i Wonder is there a way to SaveToStream several Label captions and later call them to the memo1 with LoadFromStream?
TMemoryStream* pms = new TMemoryStream();
ListBox1->Items->SaveToStream(pms);
pms->Position = 0;
Memo1->Lines->LoadFromStream(pms);
delete pms;
i Wonder is there a way to SaveToStream several Label captions and later call them to the memo1 with LoadFromStream?