|
IOleObject::Close
Changes an embedded object from the running to the loaded state. Disconnects a
linked object from its link source.
HRESULT Close(
DWORD dwSaveOption
| //Indicates whether to save object before closing
| );
|
|
Parameter
dwSaveOption
[in] Indicates whether the object is to be saved as part of the transition to
the loaded state. Valid values are taken from the enumeration OLECLOSE.
Note The OLE 2 user model recommends that object applications do not prompt users
before saving linked or embedded objects, including those activated in place.
This policy represents a change from the OLE 1 user model, in which object
applications always prompt the user to decide whether to save changes.
Return Values
S_OK
The object closed successfully.
OLE_E_PROMPTSAVECANCELLED
The user was prompted to save but chose the Cancel button from the prompt
message box.
Comments
Notes to Callers
A container application calls IOleObject::Close when it wants to move the object from a running to a loaded state. Following
such a call, the object still appears in its container but is not open for
editing. Calling IOleObject::Close on an object that is loaded but not running has no effect. Closing a linked
object simply means disconnecting it.
Notes to Implementors
Upon receiving a call to IOleObject::Close, a running object should do the following:
- If the object has been changed since it was last opened for editing, it should
request to be saved, or not, according to instructions specified in dwSaveOption. If the option is to save the object, then it should call its container's IOleClientSite::SaveObject interface.
- If the object has IDataObject::DAdvise connections with ADVF_DATAONSTOP flags, then it should send an OnDataChange
notification. See IDataObject::DAdvise for details.
- If the object currently owns the Clipboard, it should empty it by calling OleFlushClipboard.
- If the object is currently visible, notify its container by calling IOleClientSite::OnShowWindow with the fshow argument set to FALSE.
- Send IAdvise::OnClose notifications to appropriate advise sinks.
- Finally, forcibly cut off all remoting clients by calling CoDisconnectObject.
If the object application is a local server (an EXE rather than a DLL),
closing the object should also shut down the object application unless the latter is
supporting other running objects or has another reason to remain in the running
state. Such reasons might include the presence of IClassFactory::LockServer locks, end-user control of the application, or the existence of other open
documents requiring access to the application.
Calling IOleObject::Close on a linked object disconnects it from, but does not shut down, its source
application. A source application that is visible to the user when the object is
closed remains visible and running after the disconnection and does not send an OnClose notification to the link container.
See Also
CoDisconnectObject, IAdviseSink::OnClose, IClassFactory::LockServer, IDataObject::DAdvise, IOleClientSite::OnShowWindow, IOleClientSite::SaveObject, OLECLOSE, OleFlushClipboard
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|