Click or drag to resize

ITravelInterfaceCanManageSatellite Property

CanManageSatellite Checks if this client can manage satellite definitions. (User level 0).

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

Property Value

Type: Boolean
Boolean – true if we can manage satellites
Examples

CanManageSatellite

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.CanManageSatellite Then
        MsgBox "The associate that is logged in can manage satellites"
    Else
        MsgBox "The associate that is logged in can't manage satellites"
    End If
Else
    MsgBox "Could not log in"
End If
Set objSO = Nothing

See Also