OnAppBeginWaitCursor Method

The client application is responsible for implementing an OnAppBeginWaitCursor event handler for some of the supported FileNet Application Integration commands. This event handler method should display the application's wait cursor. The OnAppEndWaitCursor method can be used to cancel display of the wait cursor.

Example
The following fragment is taken from the Add-In Sample Application.


HRESULT __stdcall CEventHandler::OnAppBeginWaitCursor()
{
   // Display the application's wait cursor.
   AfxGetMainWnd()->BeginWaitCursor();
   return S_OK;
}
Parameters
None.
Return
The OnAppBeginWaitCursor event handler method should return an HRESULT value of S_OK when successful.
See Also
OnAppEndWaitCursor Method