Skip to content

Latest commit

 

History

History
115 lines (83 loc) · 5.36 KB

nf-oleidl-ioleobject-advise.md

File metadata and controls

115 lines (83 loc) · 5.36 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:oleidl.IOleObject.Advise
IOleObject::Advise (oleidl.h)
Establishes an advisory connection between a compound document object and the calling object's advise sink, through which the calling object receives notification when the compound document object is renamed, saved, or closed.
Advise
Advise method [COM]
Advise method [COM]
IOleObject interface
IOleObject interface [COM]
Advise method
IOleObject.Advise
IOleObject::Advise
_ole_ioleobject_advise
com.ioleobject_advise
oleidl/IOleObject::Advise
com\ioleobject_advise.htm
com
6a68c9e9-6e06-4def-89a5-18e184e76a26
12/05/2018
Advise, Advise method [COM], Advise method [COM],IOleObject interface, IOleObject interface [COM],Advise method, IOleObject.Advise, IOleObject::Advise, _ole_ioleobject_advise, com.ioleobject_advise, oleidl/IOleObject::Advise
oleidl.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
OleIdl.Idl
Windows
19H1
IOleObject::Advise
oleidl/IOleObject::Advise
c++
APIRef
kbSyntax
COM
OleIdl.h
IOleObject.Advise

IOleObject::Advise

-description

Establishes an advisory connection between a compound document object and the calling object's advise sink, through which the calling object receives notification when the compound document object is renamed, saved, or closed.

-parameters

-param pAdvSink [in]

Pointer to the IAdviseSink interface on the advise sink of the calling object.

-param pdwConnection [out]

Pointer to a token that can be passed to IOleObject::Unadvise to delete the advisory connection.

-returns

This method returns S_OK on success. Other possible return values include the following.

Return code Description
E_OUTOFMEMORY
Insufficient memory available for this operation.

-remarks

The IOleObject::Advise method sets up an advisory connection between an object and its container, through which the object informs the container's advise sink of close, save, rename, and link-source change events in the object. A container calls this method, normally as part of initializing an object, to register its advisory sink with the object. In return, the object sends the container compound-document notifications by calling IAdviseSink or IAdviseSink2.

If container and object successfully establish an advisory connection, the object receiving the call returns a nonzero value through pdwConnection to the container. If the attempt to establish an advisory connection fails, the object returns zero. To delete an advisory connection, the container calls IOleObject::Unadvise and passes this nonzero token back to the object.

An object can delegate the job of managing and tracking advisory events to an OLE advise holder, to which you obtain a pointer by calling CreateOleAdviseHolder. The returned IOleAdviseHolder interface has three methods for sending advisory notifications, as well as IOleAdviseHolder::Advise, IOleAdviseHolder::Unadvise, and IOleAdviseHolder::EnumAdvise methods that are identical to those for IOleObject. Calls to IOleObject::Advise, IOleObject::Unadvise, or IOleObject::EnumAdvise are delegated to corresponding methods in the advise holder.

To destroy the advise holder, simply call IUnknown::Release on the IOleAdviseHolder interface.

-see-also

CreateOleAdviseHolder

IOleAdviseHolder::Advise

IOleObject

IOleObject::EnumAdvise

IOleObject::Unadvise