WeibullDataSet.ShowCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) m (moved WeibullEvents.ShowCalculationProgress to WeibullDataSet.ShowCalculationProgress: Change in API structure.) |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:API}}{{Template:APIBreadcrumb|.[[ | {{Template:API}}{{Template:APIBreadcrumb|.[[WeibullDataSet Class|WeibullDataSet]]}} | ||
{{Template:InProgress}} | {{Template:InProgress}} | ||
<onlyinclude>Occurs when calculation is in progress. Displays a progress bar.</onlyinclude> | |||
'''Remarks''': Instead of using the default event procedure, you can execute a custom procedure by setting the <code>UseEvents</code> property of the object to true. The event can be raised by the [[WeibullDataSet.Calculate|Calculate]] or [[WeibullDataSet.CalculateBestFit|CalculateBestFit]] method. | |||
== Syntax == | |||
'''_ShowCalculationProgress'''() | |||
== Example == | |||
The following example provides a simple demonstration on how to handle a custom event. | |||
'''VBA''' | |||
{{APIComment|'Specify a variable to handle the event.}} | |||
{{APIPrefix|Private WithEvents}} wds {{APIPrefix|As}} WeibullDataSet | |||
{{APIComment|'----------------------------}} | |||
{{APIPrefix|Sub}} Main() | |||
{{APIComment|'Associate the event variable with an object.}} | |||
{{APIPrefix|Set}} wds = {{APIPrefix|New}} WeibullDataSet | |||
{{APIComment|'Set the application to handle custom events.}} | |||
wds.UseEvents = True | |||
{{APIComment|'To raise the event, calculate a data set.}} | |||
{{APIPrefix|Call}} wds.AddFailure(100, 1) | |||
{{APIPrefix|Call}} wds.AddFailure(120, 1) | |||
{{APIPrefix|Call}} wds.AddFailure(130, 1) | |||
{{APIPrefix|Call}} wds.AddFailure(160, 1) | |||
{{APIPrefix|Call}} wds.AddFailure(190, 1) | |||
wds.Calculate | |||
Msgbox({{APIString|"End"}}) | |||
{{APIPrefix|End Sub}} | |||
{{APIComment|'----------------------------}} | |||
{{APIPrefix|Private Sub}} wds_ShowCalculationProgress() | |||
{{APIComment|'<Add code here to handle the event.>}} | |||
MsgBox ("ShowCalculationProgress event") | |||
{{APIPrefix|End Sub}} | |||
'''VB.NET''' | |||
{{APIComment|'Specify a variable to handle the event.}} | |||
{{APIPrefix|Private WithEvents}} wds {{APIPrefix|As}} WeibullDataSet | |||
{{APIComment|'----------------------------}} | |||
{{APIPrefix|Sub}} Main() | |||
{{APIComment|'Associate the event variable with an object.}} | |||
wds = {{APIPrefix|New}} WeibullDataSet | |||
{{APIComment|'Set the application to handle custom events.}} | |||
wds.UseEvents = True | |||
{{APIComment|'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({{APIString|"End"}}) | |||
{{APIPrefix|End Sub}} | |||
{{APIComment|'----------------------------}} | |||
{{APIPrefix|Private Sub}} wds_ShowCalculationProgress() {{APIPrefix|Handles}} wds.ShowCalculationProgress | |||
{{APIComment|'<Add code here to handle the event.>}} | |||
MsgBox ("ShowCalculationProgress event") | |||
{{APIPrefix|End Sub}} |
Revision as of 23:55, 11 August 2016
Member of: SynthesisAPI.WeibullDataSet
Template:InProgress
Occurs when calculation is in progress. Displays a progress bar.
Remarks: Instead of using the default event procedure, you can execute a custom procedure by setting the UseEvents
property of the object to true. The event can be raised by the Calculate or CalculateBestFit method.
Syntax
_ShowCalculationProgress()
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_ShowCalculationProgress() '<Add code here to handle the event.> MsgBox ("ShowCalculationProgress 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_ShowCalculationProgress() Handles wds.ShowCalculationProgress '<Add code here to handle the event.> MsgBox ("ShowCalculationProgress event") End Sub