SQL Object
 
Syntax
 
SQL.OpenExcelDocument FileName
 
Description
Automatically launches Microsoft Excel and opens the specified worksheet 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 Excel.
 
Parameter
Description
FileName
Path and file name reference to an MS Excel worksheet (.xls) or other compatible (convertible) file.
 
See Also
Example
 
Sub Main
 
   Dim sFile As String
 
   sFile = InputBox$("Excel file:")
   SQL.OpenExcelDocument sFile
 
End Sub