WeibullDataSet.HideCalculationProgress: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(No difference)

Revision as of 21:50, 16 September 2013


Hides the calculation progress display.

Weibull Declaration

Public Overridable Sub HideCalculationProgress( ByVal sender As WeibullDataSet)

Called by ‘sender’ when calculation progress should be hidden.

ALTA Declaration

Public Overridable Sub HideCalculationProgress( ByVal sender As ALTADataSet)

Called by ‘sender’ when calculation progress should be hidden.

Usage Example

Declare the WeibullEvents. Substitute ALTAEvents for ALTA.
Declare the WeibullDataSet. Substitute ALTADataSet for ALTA.
Note: The WeibullDataSet/ALTADataSet 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

Hide the current Calculation Progress.

       WEvents.HideCalculationProgress(WDS)