SQL Object
 
Syntax
 
SQL.OpenTradiumDocument FileName
 
Description
Opens a TRADIUM-compatible file. This is similar to the File/Open menu in the TRADIUM main program. Depending on the file name extension of the document, TRADIUM automatically opens the most appropriate application.
 
If it is a document archived in the digital archive, the document is automatically retrieved from this archive.
 
Parameter
Description
FileName
Path and file name reference to a document.
 
See Also
Example
Sub Main()
 
    Dim sFile As String
 
    sFile = InputBox$("Documentnaam:")
    SQL.OpenTradiumDocument sFile
 
End Sub