Talk:WeibullEvents.Question/Notes: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '=DRAFT= {{Template:API}}{{Template:APIBreadcrumb}} Called when an answer to a question is required. Displays a prompt and returns the result. == Syntax == <ul><li>Question( {…')
 
No edit summary
 
Line 1: Line 1:
=DRAFT=
=DRAFT=
{{Template:API}}{{Template:APIBreadcrumb}}
{{Template:API}}{{Template:APIBreadcrumb|.[[WeibullEvents Class|WeibullEvents]]}}





Latest revision as of 15:29, 6 May 2016

DRAFT

APIWiki.png


Member of: SynthesisAPI.WeibullEvents


Called when an answer to a question is required. Displays a prompt and returns the result.

Syntax

  • Question( sender As WeibullDataSet, sMsg As String , Buttons As MsgBoxStyle, Answer As MsgBoxResult)

Parameters

sender: A 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

 'Overrides requested. Create a new class, inherit WeibullEvents, and set the dataset's events. 
 Private Class myEvents
     Inherits WeibullEvents
     Public Overrides Sub Question(sender As WeibullDataSet, sMsg As String, Buttons As MsgBoxStyle, 
     ByRef Answer As MsgBoxResult)
         MyBase.Question(sender, sMsg, Buttons, Answer)
             '<Add additional code here.> 
     End SubEnd Class
 
 'Set the new Events class. 
 WDS.Events = New myEvents
 
 'Ask a question. Result will be updated in Answer. 
 WDS.Events.Question(WDS, "Continue?", MsgBoxStyle., Answer)