Job description
The Contact person dialog has a title field that may be used to register the person’s professional title.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxstring Title { get; set; }
Property Title As String
Get
Set
Dim instance As IPerson
Dim value As String
value = instance.Title
instance.Title = value
property String^ Title {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringString – the text registered on the person dialog title field
ExamplesTitle
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "The current person title " & objSO.CurrentPerson.Title, vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also