Click or drag to resize

IPersonAddress Property

Personal Address - the person will use the contact's address unless the UseAsMailingAddress flag is also set. Returns the contact person’s address object

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

Property Value

Type: SOAddress
SOAddress – a reference to the SOAddress object
Examples

Address

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

VB
Dim objSO
Set objSO = Nothing
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox objSO.CurrentPerson.Address.FormattedAddress
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also