Previous Next


SimShouldStart Event

Description

This event is raised when the @RISK results viewing application is in use, and the user presses the "Simulate" button in that application. During the processing of this event, you should set up your simulation to run and call the RDKApplication's Simulate method.

Syntax

RDKApp_SimShouldStart()

Arguments

None.

Example

Private Sub RDKApp_SimShouldStart()
    DefineModel
    RDKApp.Simulate
End Sub