WeibullDataSet.Question: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:AWEAPIClass}}
{{Template:AWEAPIClass}}
Display a prompt, and returns the result.


== Weibull Declaration  ==
== Weibull Declaration  ==
Line 10: Line 12:
{{APIName|WeibullDataSet,(}}
{{APIName|WeibullDataSet,(}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}
{{APIName|sMsg(}}
{{APIName|sMsg}}
{{APIPrefix|As String}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIName|,}}
Line 32: Line 34:
{{APIName|ALTADataSet,(}}
{{APIName|ALTADataSet,(}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}
{{APIName|sMsg(}}
{{APIName|sMsg}}
{{APIPrefix|As String}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIName|,}}
Line 45: Line 47:


{{APIComment|Called by ‘sender’ when an answer to the question is required.}}
{{APIComment|Called by ‘sender’ when an answer to the question is required.}}
== Usage Example ==
[http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxstyle.aspx MsgBoxStyle]
{{APIComment|Declare the WeibullDataSet. See [[New WeibullDataSet]] for additional details.  Substitute [[ALTADataSet]] for ALTA.}}
{{APIComment|Select a message box style. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxstyle.aspx MsgBoxStyle] for additional details.}}
{{APIComment|Declare a result variable. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxresult.aspx MsgBoxResult] for additional details.}}
        Dim WDS as New WeibullDataSet
        Dim MsgBoxStyle1 as MsgBoxStyle = MsgBoxStyle.OkCancel
        Dim MsgBoxResult1 as MsgBoxResult
{{APIComment|Prompts user with "Question1" and returns result in MsgBoxResult1.}}
        WDS.Events.Question(WDS, "Question1", MsgBoxStyle1, MsgBoxResult1)

Revision as of 21:54, 10 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.

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.

Usage Example

MsgBoxStyle


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)