SQL Object
 
Syntax
 
SQL.OpenWordDocument FileName
 
Description
Automatically launches Microsoft Word and opens the specified document in it.
 
If it is a document archived in the digital archive, the document is automatically retrieved from this archive.
 
Note: Requires an installed version of Micorosoft Word.
 
Parameter
Description
FileName
Path and file name reference to an MS Word document or a Rich Text Formatted (.rtf) document.
 
See Also
Example
 
Sub Main
 
   Dim sFile As String
 
   sFile = InputBox$("Documentnaam:")
   SQL.OpenWordDocument sFile
 
End Sub