IDocumentArchiveProvider Property |
Archive system where the document content is stored.
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
Syntaxint ArchiveProvider { get; set; }
Property ArchiveProvider As Integer
Get
Set
Dim instance As IDocument
Dim value As Integer
value = instance.ArchiveProvider
instance.ArchiveProvider = value
property int ArchiveProvider {
int get ();
void set (int value);
}
Property Value
Type:
Int32Long – 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