SQL Object
 
Syntax
 
SQL.ExistsInArchive(FileName)
 
Description
Returns TRUE if the specified file is stored in the digital archive.
If not found, this function returns FALSE.
 
Parameter
Description
FileName
Path and file name of the document being searched. Wildcards are not allowed.
 
See Also
Example
Sub Main()
 
    Dim strFile As String
 
    strFile = InputBox$("Geef bestandsnaam op:")
 
    If ExistsInArchive(strFile) Then
        Debug.Print FetchFromArchive(strFile)
    End If
 
End Sub