Click or drag to resize

ITravelInterfaceCanTravel Property

CanTravel Check if the associate/user logged in to the database has permission to perform a local update - take a local copy of the central database

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
bool CanTravel { get; }

Property Value

Type: Boolean
Boolean – true if this client can be set in travel mode
Examples

CanTravel

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO 
Dim objTI 
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    Set objTI = objSO.Database.TravelInterface
    If objTI.CanTravel Then
        MsgBox "The currently logged in associate may travel."
    Else
        MsgBox " The currently logged in associate may not have the correct permissions. Check log file for error message."
    End If
Else
    MsgBox "Could not log in"
End If
Set objSO = Nothing

See Also