Persist ActiveX Controls At Runtime
Posted
by Lee Marmara
on February 11th, 2000
I was writing a piece of code to store and load user preferences and wanted to persist the properties of some ActiveX controls on my dialog. The following procedure seems to do the job rather nicely.
BOOL PersistActiveX(CArchive& ar, CWnd* pActiveX)
{
ASSERT(pActiveX);
HRESULT hr = E_FAIL;
// Create an archive stream
CArchiveStream stm(&ar);
LPPERSISTSTREAMINIT pPersStm = NULL;
LPUNKNOWN lpUnk = pActiveX->GetControlUnknown();
if(lpUnk)
{
// We have the IUnknown interface, so
// get the IPersistStreamInit
lpUnk->QueryInterface(IID_IPersistStreamInit,
(LPVOID*)&pPersStm);
if(pPersStm)
{
// We have the relevant interface so load or save the data
// based on the type of archive we have.
if(ar.IsLoading())
{
hr = pPersStm->Load(&stm);
}
else
{
hr = pPersStm->Save(&stm, FALSE);
}
}
// Must release the interface
pPersStm->Release();
}
return SUCCEEDED(hr);
}
This can then be called simply by doing the following:
PersistActiveX(ar, GetDlgItem(IDC_SOMEACTIVEX));

Comments
Persistence CArray in ActiveX
Posted by Legacy on 01/18/2004 12:00amOriginally posted by: Diego
Do you know how can I save a CArray in to the persistance of the ActiveX - PX_Blob????
Thanks
-
Replyhello
Posted by tqqttq on 05/30/2005 03:06amgood
ReplyProblem with successive serializing...
Posted by Legacy on 09/14/2001 12:00amOriginally posted by: Lez
Hello,
I'm using this function for serializing (loading) MFC ActiveX components. It Works great with the first component but i dont know why all others doesn't. It seems that the File (or the archive) is closing by the line pStream->Load(&stm).
ReplyDoes anyone have a solution ?
How to use Web Browser control in ATL?
Posted by Legacy on 10/09/2000 12:00amOriginally posted by: Peng Fei
Hi,
I need use Web Browser control in my ATL,
but I cannot create the dialog with Web Browser.
Please give me a solution.
regards
ReplyPersist ActiveX Controls at Runtime
Posted by Legacy on 02/28/2000 12:00amOriginally posted by: kiran
It is not mentioned as to how the CArchive object is created.
ReplyCArchiveStream
Posted by Legacy on 02/21/2000 12:00amOriginally posted by: Erling Eybye
CArchiveStream ??? is this class a MFC class ?
ReplyI can't find it on Microsoft's homepage.