CasewareDocs

IsServerImportTask

Gets a value that indicates whether the IDEA databases are located on the server.

Compatibility

Available as of IDEA version 9.1.1

Syntax

IsServerImportTask()

Return value

Gets a value that indicates whether the IDEA Databases are located on the server.

Remarks

This property does not always have the same value as the property IsServerTask.

Certain subtasks of a Standard Import Routine do not run on IDEA Server (e.g. dialog tasks) and therefore IsServerTask will always be false for them. This property tells the caller whether the IDEA databases that were imported by the running Standard Import Routine are located on the server or not.

Type

Boolean

Example

Option Explicit 
'IsServerImportTask
Sub Main()
If SmartContext.IsServerImportTask Then
MsgBox "IsServerImportTask = true"
Else
MsgBox "IsServerImportTask = false"
End If
End Sub