Talk:WeibullDataSet.Message/Notes

From ReliaWiki
Revision as of 20:46, 11 August 2016 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search

DRAFT

Occurs when the Calculate or CalculateBestFit method is called but no data set has been defined or there is insufficient data to calculate the parameters of a distribution.

To handle custom events, set the UseEvents property of the object to True. The Calculate method raises the event once, when it is unable to calculate the parameters of the data. The CalculateBestFit method raises the event for each distribution that is selected to be included in the analysis.

Syntax

_Message(ByVal msg As String, ByVal IsCritical As Boolean)

Parameters

msg

The main display label.

IsCritical

Indicates whether the message displayed is critical.


Example

The following example provides a simple demonstration on how to handle a custom event.

VBA

 'Specify a variable to handle the event. 
  Private WithEvents wds As WeibullDataSet

 Sub Main()
   'Associate the event variable with an object. 
    Set wds = New WeibullDataSet

   'Set the application to handle custom events. 
    wds.UseEvents = True

   'To raise the event, call the Calculate method without defining a data set.  
    wds.Calculate
   Msgbox("End")
 End Sub
 '---------------------------- 

 Private Sub wds_Message(ByVal Msg As String, ByVal IsCritical As Boolean)
   '<Add code here to handle the event.> 
    MsgBox ("Message event.")
 End Sub