language from codeThu, 09 Mar 2023

Function KfxLoadValidation ( VerifyBatch As Integer, _ NumberOfDocsInBatch As Integer ) As Integer On Error GoTo Failure If (VerifyBatch <> 0) Then KfxOperation = "Verify" Else KfxOperation = "Index" End If KfxLoadValidation = NoError Exit Function Failure: KfxLoadValidation = FatalError Exit Function End Function REM ======================================================================== REM Function handling termination of this module. REM This function is called upon end of processing for the batch. The REM function is called once per batch and is the last function to be REM called from this module. REM ------------------------------------------------------------------------ Function KfxUnloadValidation ( ) As Integer On Error GoTo Failure KfxUnloadValidation = NoError Exit Function Failure: KfxUnloadValidation = FatalError Exit Function End Function

#### Output

Questions about programming?Chat with your personal AI assistant