WeibullDataSet.Question

From ReliaWiki
Revision as of 22:42, 10 September 2013 by Albert Szeto (talk | contribs)
Jump to navigation Jump to search


Display a prompt, and returns the result.

Weibull Declaration

Public Overridable Sub Question( ByVal sender As WeibullDataSet, ByVal sMsg As String , ByVal Buttons As MsgBoxStyle, ByRef Answer As MsgBoxResult)

Called by ‘sender’ when an answer to the question is required.

ALTA Declaration

Public Overridable Sub Question( ByVal sender As ALTADataSet, ByVal sMsg As String , ByVal Buttons As MsgBoxStyle, ByRef Answer As MsgBoxResult)

Called by ‘sender’ when an answer to the question is required.

Parameters

sender An WeibullDataSet object

sMsg The main display label.

Buttons The MsgBoxStyle that determines the number and display of the buttons. See MsgBoxStyle for additional details.

Answer The MsgBoxResult that is returned by the prompt. See MsgBoxResult for additional details.

Usage Example

Declare the WeibullDataSet. See New WeibullDataSet for additional details. Substitute ALTADataSet for ALTA.
Select a message box style. See MsgBoxStyle for additional details.
Declare a result variable. See MsgBoxResult for additional details.

       Dim WDS as New WeibullDataSet
       Dim MsgBoxStyle1 as MsgBoxStyle = MsgBoxStyle.OkCancel
       Dim MsgBoxResult1 as MsgBoxResult

Prompts user with "Question1" and returns result in MsgBoxResult1.

       WDS.Events.Question(WDS, "Question1", MsgBoxStyle1, MsgBoxResult1)