WeibullDataSet.Message: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
m (Protected "WeibullEvents.Message" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}
 
{{Template:WeibullEvents.Message.Cmt}}
Display a message.


== Method Syntax ==
== Method Syntax ==
{{APIName|'''Message'''(}}
<ul><li>Message(
{{APIPrefix|ByVal}}
{{APIName|sender}}
{{APIName|sender}}
{{APIPrefix|As}}
{{APIPrefix|As}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]],}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]],}}
{{APIPrefix|ByVal}}
{{APIName|sMsg}}
{{APIName|sMsg}}
{{APIPrefix|As String}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|AdditionalInfo}}
{{APIName|AdditionalInfo}}
{{APIPrefix|As String}}
{{APIPrefix|As String}}
{{APIName|,}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|IsCritical}}
{{APIName|IsCritical}}
{{APIPrefix|As Boolean}}
{{APIPrefix|As Boolean}}
{{APIName|)}}<br>
{{APIName|)}}</li></ul>
{{APIComment|Called by ‘sender’ when a message should be displayed.}}


== Parameters ==
== Parameters ==

Revision as of 18:51, 21 February 2014


Called when a message should be displayed. Displays a message.

Method Syntax

  • Message( sender As WeibullDataSet, sMsg As String , AdditionalInfo As String , IsCritical As Boolean )

Parameters

sender An WeibullDataSet object

sMsg The main display label.

AdditionalInfo The remaining label.

IsCritical (This might be used to indicate which icon to display.)

Usage Example

Declare a New class that Inherits from WeibullEvents.
Override the method.

       Private Class myEvents
           Inherits WeibullEvents
           Public Overrides Sub Message(sender As WeibullDataSet, sMsg As String, AdditionalInfo As String, IsCritical As Boolean)
               MyBase.Message(sender, sMsg, AdditionalInfo, IsCritical)
                (Add additional code.) 
           End Sub
       End Class

Declare the WeibullDataSet.

       Dim WDS as New WeibullDataSet

Use the created myEvents class in place of the one created by the dataset.

       WDS.Events = New myEvents

Show a prompt with the respective strings. The additional code should also run.

       WDS.Events.Message(WDS, "Message1", "AdditionalInfo1", False)