ALTADataSet.HideCalculationProgress: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 15: Line 15:
== Usage Example ==
== Usage Example ==
This example demonstrates how to hide the calculation progress display.
This example demonstrates how to hide the calculation progress display.
  {{APIComment|'Overrides requested, create a new class, inherit WeibullEvents, and set the dataset's events.}}
  {{APIComment|'Overrides requested. Create a new class, inherit WeibullEvents, and set the dataset's events.}}
   Private Class myEvents
   Private Class myEvents
       Inherits WeibullEvents
       Inherits WeibullEvents

Revision as of 16:46, 6 May 2014


Called when calculation progress should be hidden. Hides the calculation progress display.

Syntax

Parameters

sender: An ALTADataSet object.

Usage Example

This example demonstrates how to hide the calculation progress display.

 '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 ALTADataSet)
         MyBase.ShowCalculationProgress(sender)
          '<Additional overridden code here.> 
     End Sub
 End Class
 
 'Set the new Events class. 
 ADS.Events = New myEvents
 
 'Show calculation progress. 
 ADS.Events.ShowCalculationProgress(ADS)