WeibullDataSet.HideCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
{{Template:API_EventsNote}} | |||
== Syntax == | == Syntax == |
Revision as of 17:02, 12 August 2016
Member of: SynthesisAPI.WeibullDataSet
Template:InProgress
Occurs when the calculation process is running. Hides the progress bar.
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
_HideCalculationProgress()
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, calculate a data set. Call wds.AddFailure(100, 1) Call wds.AddFailure(120, 1) Call wds.AddFailure(130, 1) Call wds.AddFailure(160, 1) Call wds.AddFailure(190, 1) wds.Calculate Msgbox("End") End Sub '---------------------------- Private Sub wds_HideCalculationProgress() '<Add code here to handle the event.> MsgBox ("HideCalculationProgress event") 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, calculate a data set. wds.AddFailure(100, 1) wds.AddFailure(120, 1) wds.AddFailure(130, 1) wds.AddFailure(160, 1) wds.AddFailure(190, 1) wds.Calculate Msgbox("End") End Sub '---------------------------- Private Sub wds_HideCalculationProgress() Handles wds.HideCalculationProgress '<Add code here to handle the event.> MsgBox ("HideCalculationProgress event") End Sub