Click or drag to resize

IPersonInformation Property

Information text Contact person information is the textbox used to add more information about a contact person. Open up a contact person card, and “Information” is the last archive card

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

Property Value

Type: String
String – a text string representing the contact person information
Examples

Information

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 = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then        
    if objSO.CurrentPerson.Information = "" then
        msgbox "The current contact person has nothing written on Information.", vbInformation + vbOKOnly, "SuperCOM"
    else
        MsgBox "Current contact person Information text: " & objSO.CurrentPerson.Information, vbInformation + vbOKOnly, "SuperCOM"
    end if
else
    MsgBox "Unable to connect"
end if
Set objSO = Nothing

See Also