Click or drag to resize

IDatabaseSafeCredentials Property

A security token that can be used instead of username+password to log in New in Seven.

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

Property Value

Type: String
Examples
VB
Set objSO = CreateObject("SuperOfficeDB.Database")

'Try login with AD authentication first
if objSO.login ("", "") = true then  
    Msg = "AD authentication"
Else
    objSO.login "ADM0", "" 
    Msg = "SuperOffice authentication"
End If


msgbox Msg & vbCrLf & "Safecredentials: " & objSO.SafeCredentials
See Also