WeibullDataSet.Message: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:


== Usage Example ==
== Usage Example ==
 
 
{{APIComment|Declare a New class that Inherits from WeibullEvents.}}<br>
{{APIComment|'Create a new class and inherit WeibullEvents.}}
{{APIComment|Override the method.}}<br>
         Private Class myEvents
         Private Class myEvents
             Inherits WeibullEvents
             Inherits WeibullEvents
          {{APIComment|'Request overrides.}}
             Public Overrides Sub Message(sender As WeibullDataSet, sMsg As String, AdditionalInfo As String, IsCritical As Boolean)
             Public Overrides Sub Message(sender As WeibullDataSet, sMsg As String, AdditionalInfo As String, IsCritical As Boolean)
                 MyBase.Message(sender, sMsg, AdditionalInfo, IsCritical)
                 MyBase.Message(sender, sMsg, AdditionalInfo, IsCritical)
                {{APIComment|(Add additional code.)}}
              {{APIComment|'(Add additional code here.)}}
             End Sub
             End Sub
         End Class
         End Class
 
 
{{APIComment|Declare the WeibullDataSet.}}<br>
{{APIComment|'Declare a new WeibullDataSet.}}
         Dim WDS as New WeibullDataSet
         Dim WDS as New WeibullDataSet
 
 
{{APIComment|Use the created myEvents class in place of the one created by the dataset.}}<br>
{{APIComment|'Use the created myEvents class in place of the one created by the dataset.}}
         WDS.Events = New myEvents
         WDS.Events = New myEvents
 
 
{{APIComment|Show a prompt with the respective strings.  The additional code should also run.}}
{{APIComment|'Show a prompt with the respective strings.  The additional code will also run.}}
         WDS.Events.Message(WDS, "Message1", "AdditionalInfo1", False)
         WDS.Events.Message(WDS, "Message1", "AdditionalInfo1", False)

Revision as of 17:50, 1 April 2014


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

Syntax

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

Parameters

sender: A WeibullDataSet object
sMsg: The main display label.
AdditionalInfo: The remaining label.
IsCritical: Indicates whether the message displayed is critical.

Usage Example

 'Create a new class and inherit WeibullEvents. 
       Private Class myEvents
           Inherits WeibullEvents
           'Request overrides. 
           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 here.) 
           End Sub
       End Class
 
 'Declare a new 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 will also run. 
       WDS.Events.Message(WDS, "Message1", "AdditionalInfo1", False)