Called during application initialization
[C++]
virtual BOOL OnXllOpenEx();
The method should return TRUE if initialization succeeded, FALSE if it failed.
This virtual function should be implemented by any class descended
from CXllPushApp.
The method is called only once in the lifetime of an addin, when it is first opened. It should always call the parent class implementation (CXllPushApp::OnXllOpenEx())
first, and return FALSE if it fails. It should open any resources required by the application,
such as database connections and data feeds.
If any errors occur during such initialization, it should show an error message
and then return FALSE to indicate failure.
Header: xlppush.h
CXllPushApp Class
| CXllPushApp Methods
| CXllApp::OnXllOpenEx()
| CXllPushApp::OnXllClose()
| Steps to create an asynchronous add-in