Syntax
| SQL.ExistsInArchive(FileName)
| ||||
---|---|---|---|---|---|
Description
| Returns TRUE if the specified file is stored in the digital archive.
If not found, this function returns FALSE.
| ||||
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 | ||||