SetMessageBoxTitle 

Syntax:             BOOL SetMessageBoxTitle (LPCTSTR sText);

Return Value:    TRUE if the operation is successful, otherwise FALSE.

Parameters:

sText      Pointer to a string that specifies the title for message box.

Remarks:

Call this method to set the title of message box that are prompt from the ELS-QB component. For example, you may set this title to your application’s name.

Example:

This sample code illustates how to set the title of message box in theOnInitialUpdate()  of the host application.

void CELS_QBDemoView::OnInitialUpdate()

{

      // Some initalization code

............................

      m_QBCtrl.SetMessageBoxTitle(_T("ELS-QBDemo"));

      ............................

}