|
IOleContainer::LockContainer
Keeps an embedded object's container running.
HRESULT LockContainer(
BOOL fLock
| //Value indicating lock or unlock
| );
|
|
Parameter
fLock
[in] Specifies whether to lock (TRUE) or unlock (FALSE) a container.
Return Values
S_OK
Container was locked successfully.
E_FAIL
An unspecified error occurred.
E_OUTOFMEMORY
Container could not be locked due to lack of memory.
Comments
An embedded object calls IOleContainer::LockContainer to keep its container running when the object has link clients that require an
update. If an end-user selects File Close from the container's menu, however,
the container ignores all outstanding LockContainer locks and closes the document anyway.
Notes to Callers
When an embedded object changes from the loaded to the running state, it
should call IOleContainer::LockContainer with the fLock parameter set to TRUE. When the embedded object shuts down (transitions from
running to loaded), it should call IOleContainer::LockContainer with the fLock parameter set to FALSE.
Each call to LockContainer with fLock set to TRUE must be balanced by a call to LockContainer with fLock set to FALSE. Object applications typically need not call LockContainer; the default handler makes these calls automatically for object applications
implemented as .EXEs as the object makes the transition to and from the running
state. Object applications not using the default handler, such as DLL object
applications, must make the calls directly.
An object should have no strong locks on it when it registers in the Running
Object Table, but it should be locked as soon as the first external client
connects to it. Therefore, following registration of the object in the Running
Object Table, object handlers and DLL object applications, as part of their
implementation of IRunnableObject::Run, should call IOleContainer::LockContainer(TRUE) to lock the object.
Notes to Implementors
The container must keep track of whether and how many calls to LockContainer(TRUE) have been made. To increment or decrement the reference count, IOleContainer::LockContainer calls CoLockObjectExternal with a flag set to match fLock.
See Also
CoLockObjectExternal, IRunnableObject::Run
| 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
|