Click or drag to resize

IDocumentCreatedAssociate Property

The user that created the object The owner of the document, the associate whose checklist the document is in shown in if the document is not set to completed

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

Property Value

Type: SOAssociate
SOAssociate - object containing the owner of the document

Implements

IModelBaseCreatedAssociate
Examples

CreatedAssociate

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
    MsgBox "Current documents owner associate: " & objSO.CurrentDocument.Associate.FullName, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also