Event: DigitsGenerated


Function:

 

When digits specified by GenerateDigits are generated, this event is raised.

     

Parameters:

 

LineIndex: The index of the line on which the event occurs.

     

Description:

 

The GenerateDigits method should be invoked to start the generation of digits.

     

Raised By:

 

Completation of digits generation.

     
     

Sample Code In Visual Basic:

'The following code show a msgbox in the DigitsGenerated event.

Sub V_DigitsGenerated(LineIndex as Integer) 

    MsgBox "Digits generated"

End sub

¡¡