SetMessageBoxTitle 

Syntax

object.SetMessageBoxTitle  sText

sText      - AString that specifies the title for message box.

Description

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.

Remarks

SetMessageBoxTitle method returns True if the operation is successful and False otherwise.

Example

This sample code illustates how to set the title of message box in the Form_Load methodof the host application.

Private Sub Form_Load()

' Some initalization code

ELS_QBCtrl. SetMessageBoxTitle = "ELS-QBDemoVB"

End Sub