OnFinishProcess is called after the last input record is processed. Implement this method if you want to customize the final actions after the conversion process is done.
Function OnFinishProcess()
none
none
Example
This uses VBScript to close the text file created in the previous sample (OnStartProcess)
Function OnFinishProcess
file.WriteLine( "Process Ended" )
file.Close()
End Function
See also