Click or drag to resize

IDocumentArchiveProviderName Property

Archive provider name. Which system the document content is stored in. You may start other applications from CRM 5, and create “documents” with these other applications. For a document created in an external application, this property returns a reference to the application needed to open the document, 0 is the SO_arc document plugin. Used with the new document plugin

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

Property Value

Type: String
Long – Archive provider
Examples

ArchiveProvider

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 objso.currentdocument.archiveprovider, vbinformation + vbokonly, "supercom"
else
    msgbox "unable to connect to database"
end if
set objso = nothing

See Also