WeibullDataSet.Message: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) mNo edit summary |
||
Line 30: | Line 30: | ||
{{APIPrefix|Set}} wds = {{APIPrefix|New}} WeibullDataSet | {{APIPrefix|Set}} wds = {{APIPrefix|New}} WeibullDataSet | ||
{{APIComment|'Set the application to | {{APIComment|'Set the application to use events.}} | ||
wds.UseEvents = True | wds.UseEvents = True | ||
Revision as of 17:14, 12 August 2016
Member of: SynthesisAPI.WeibullDataSet
Template:InProgress
Occurs when there is a calculation error.
Remarks: To hide the messages or write your own code for the event procedure, set the UseEvents
property of the object to True. The event is raised by the class methods.
Syntax
_Message(ByVal msg As String, ByVal IsCritical As Boolean)
Parameters
msg
- The message to display.
IsCritical
- Indicates whether the message displayed is critical.
Example
The following example provides a simple demonstration on how to handle the 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 use 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 (msg) End Sub
VB.NET 'Specify a variable to handle the event. Private WithEvents wds As WeibullDataSet '---------------------------- Sub Main() 'Associate the event variable with an object. 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(msg As String, IsCritical As Boolean) Handles wds.Message '<Add code here to handle the event.> MsgBox (msg) End Sub