The event handler that gets called when the progress of an internal process has completed.
Syntax:
Object. ProgressComplete(<Progress Type>)
Parameters:
Example:
Private Sub m_oEdiDoc_ProgressComplete(ByVal ProgressType As Fredi.ProgressTypeConstants)
Select Case ProgressType
Case Progress_Type_Single_Import
ProgressImport.Value = 100
Case Progress_Type_Codes_Read
ProgressReadCodes.Value = 100
Case Progress_Type_Document_Read
ProgressLoad.Value = 100
Case Progress_Type_Document_Save
ProgressSave.Value = 100
End Select
End Sub