WeibullDataSet.ShowCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) |
Albert Szeto (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:APIClass|WeibullEvents Class|WeibullEvents}} | ||
Shows the current calculation progress if the calculation process is running. | Shows the current calculation progress if the calculation process is running. | ||
Line 11: | Line 11: | ||
{{APIPrefix|As}} | {{APIPrefix|As}} | ||
{{APIName|[[WeibullDataSet Class|WeibullDataSet]])}} | {{APIName|[[WeibullDataSet Class|WeibullDataSet]])}} | ||
{{APIComment|Called by ‘sender’ when calculation progress should be shown.}} | {{APIComment|Called by ‘sender’ when calculation progress should be shown.}} | ||
Line 28: | Line 16: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|Declare the WeibullEvents | {{APIComment|Declare the WeibullEvents.}}<br> | ||
{{APIComment|Declare the WeibullDataSet | {{APIComment|Declare the WeibullDataSet.}}<br> | ||
{{APIComment|Note: The WeibullDataSet | {{APIComment|Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.}}<br> | ||
Dim WEvents as New WeibullEvents | Dim WEvents as New WeibullEvents | ||
Dim WDS as New WeibullDataSet | Dim WDS as New WeibullDataSet |
Revision as of 22:51, 16 September 2013
Shows the current calculation progress if the calculation process is running.
Weibull Declaration
Public Overridable Sub ShowCalculationProgress( ByVal sender As WeibullDataSet)
Called by ‘sender’ when calculation progress should be shown.
Usage Example
Declare the WeibullEvents.
Declare the WeibullDataSet.
Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.
Dim WEvents as New WeibullEvents Dim WDS as New WeibullDataSet
Show the current Calculation Progress.
WEvents.ShowCalculationProgress(WDS)