Talk:ALTAEvents.ShowCalculationProgress/Notes

From ReliaWiki
Revision as of 16:05, 6 May 2016 by Kate Racaza (talk | contribs) (Created page with '=DRAFT= {{Template:API}}{{Template:APIBreadcrumb|.ALTAEvents}} Called when calculation progress should be shown. Shows the current calculation progress if …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

DRAFT

APIWiki.png


Member of: SynthesisAPI.ALTAEvents


Called when calculation progress should be shown. Shows the current calculation progress if the calculation process is running.

Syntax

Parameters

sender: An ALTADataSet object.

Usage Example

This example demonstrates how to show 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)