SQL Object
 
Syntax
 
SQL.FaxWordDocument(FileName, FaxNumber)
 
Description
Opens a .DOC or .RTF document and then sends it over the fax to the specified fax number. If the document is stored in the digital archive, it is automatically retrieved from this archive.
 
Returns value TRUE if successful, FALSE otherwise.
 
Parameter
Description
FileName
Path and file name reference to an MS Word document or a Rich Text Formatted (.rtf) document.
FaxNumber
A numeric telefax number. Only digits allowed, no '-' or '+' symbols.
 
See Also
Example
Sub Main()
 
    Dim sFile As String
 
    sFile = InputBox$("Bestand:")
    If SQL.FaxWordDocument(sFile, "0252620568") Then
        Debug.Print "Gefaxed naar Keemink"
    End If
 
End Sub