WeibullDataSet.Question: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:AWEAPIClass}}
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}


Display a prompt, and returns the result.
Display a prompt, and returns the result.
Line 11: Line 11:
{{APIPrefix|As}}
{{APIPrefix|As}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]],}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]],}}
{{APIPrefix|ByVal}}
{{APIName|sMsg}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|Buttons}}
{{APIPrefix|As}}
{{APIName|MsgBoxStyle,}}
{{APIPrefix|ByRef}}
{{APIName|Answer}}
{{APIPrefix|As}}
{{APIName|MsgBoxResult)}}
{{APIComment|Called by ‘sender’ when an answer to the question is required.}}
==ALTA Declaration==
{{APIPrefix|Public Overridable Sub}}
{{APIName|Question(}}
{{APIPrefix|ByVal}}
{{APIName|sender}}
{{APIPrefix|As}}
{{APIName|[[ALTADataSet Class|ALTADataSet]],}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}
{{APIName|sMsg}}
{{APIName|sMsg}}
Line 62: Line 40:


== Usage Example ==
== Usage Example ==
{{APIComment|Declare the WeibullEvents.  Substitute [[ALTAEvents Class|ALTAEvents]] for ALTA.}}<br>
{{APIComment|Declare the WeibullEvents.}}<br>
{{APIComment|Declare the WeibullDataSet. Substitute [[ALTADataSet Class|ALTADataSet]] for ALTA.}}<br>
{{APIComment|Declare the WeibullDataSet.}}<br>
{{APIComment|Note: The WeibullDataSet/ALTADataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.}}<br>
{{APIComment|Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.}}<br>
{{APIComment|Select a message box style. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxstyle.aspx MsgBoxStyle] for additional details.}}<br>
{{APIComment|Select a message box style. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxstyle.aspx MsgBoxStyle] for additional details.}}<br>
{{APIComment|Declare a result variable. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxresult.aspx MsgBoxResult] for additional details.}}
{{APIComment|Declare a result variable. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxresult.aspx MsgBoxResult] for additional details.}}

Revision as of 22:10, 16 September 2013



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.

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 WeibullEvents.
Declare the WeibullDataSet.
Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.
Select a message box style. See MsgBoxStyle for additional details.
Declare a result variable. See MsgBoxResult for additional details.

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

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

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