WeibullDataSet.ShowCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) |
||
Line 14: | Line 14: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|'Overrides requested. Create a new class, inherit WeibullEvents, and set the dataset's events.}} | |||
{{APIComment| | Private Class myEvents | ||
Inherits WeibullEvents | |||
Public Overrides Sub ShowCalculationProgress(sender As WeibullDataSet) | |||
MyBase.ShowCalculationProgress(sender) | |||
{{APIComment|'<Additional overridden code here.>}} | |||
End Sub | |||
End Class | |||
{{APIComment|'Set the new Events class.}} | |||
WDS.Events = New myEvents | |||
{{APIComment| | |||
{{APIComment|'Show calculation progress.}} | |||
WDS.Events.ShowCalculationProgress(WDS) | |||
{{APIComment|Show | |||
Revision as of 22:44, 23 May 2014
Called when calculation progress should be shown. Shows the current calculation progress if the calculation process is running.
Syntax
- ShowCalculationProgress( sender As WeibullDataSet )
Parameters
- sender: A WeibullDataSet object.
Usage Example
'Overrides requested. Create a new class, inherit WeibullEvents, and set the dataset's events. Private Class myEvents Inherits WeibullEvents Public Overrides Sub ShowCalculationProgress(sender As WeibullDataSet) MyBase.ShowCalculationProgress(sender) '<Additional overridden code here.> End Sub End Class 'Set the new Events class. WDS.Events = New myEvents 'Show calculation progress. WDS.Events.ShowCalculationProgress(WDS)