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
Syntaxstring ArchiveProviderName { get; }
ReadOnly Property ArchiveProviderName As String
Get
Dim instance As IDocument
Dim value As String
value = instance.ArchiveProviderName
property String^ ArchiveProviderName {
String^ get ();
}
Property Value
Type:
StringLong – Archive provider
ExamplesArchiveProvider
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 objso.currentdocument.archiveprovider, vbinformation + vbokonly, "supercom"
else
msgbox "unable to connect to database"
end if
set objso = nothing
See Also