WeibullDataSet.UpdateCalculationProgress: Difference between revisions
John Leavitt (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 22: | Line 22: | ||
'''pdone ''' | '''pdone ''' | ||
The percentage,in decimal, to display. (0 to .99) | The percentage, in decimal, to display. (0.00 to 0.99) | ||
'''append_to''' | '''append_to''' |
Revision as of 17:54, 8 October 2013
Provides ability to customize the calculation progress display.
Method Syntax
UpdateCalculationProgress(
ByVal
sender
As
WeibullDataSet , ByVal msgx_0 As String, ByVal msgx_1 As String, ByVal pdone As Double, ByVal append_to As Boolean, ByVal Prev_increment As Long, ByRef Cancel As Boolean )
Called by ‘sender’ when the calculation progress should be updated.
Parameters
sender An WeibullDataSet object
msgx_0 The main display label.
msgx_1 The remaining label.
pdone The percentage, in decimal, to display. (0.00 to 0.99)
append_to If True, append pdone to the current percentage value in the progress display at the rate of Prev_increment, otherwise pdone will replace the value.
Prev_increment This is the value of the incremental value per progress update, if append_to is True. If append_to is False, this value is ignored.
Cancel This determines if the calculation can be cancelled.
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
Update the calculation progress display.
WEvents.UpdateCalculationProgress(WDS, "NewMessage1", "NewMessage2", 100, False, 0, True)