Solid Edge Revision Manager Object Library
UploadDocumentsToServer Method
Specifies the number of documents to upload to the server.
Specifies the documents to upload to the server.
Description
This method uploads the specified documents to the server.
Syntax
Visual Basic
Public Function UploadDocumentsToServer( _
   ByVal NumberOfDocumentsToUpload As Long, _
   ByVal DocumentsToUpload As Variant _
) As Long
Parameters
NumberOfDocumentsToUpload
Specifies the number of documents to upload to the server.
DocumentsToUpload
Specifies the documents to upload to the server.
Example
Imports RevisionManager
Imports System.Runtime.InteropServices

Module Example

    Sub Main()
        Dim objApplication As RevisionManager.Application = Nothing
        Dim objInsight As RevisionManager.Insight = Nothing
        Dim aDocumentsToUpload(1) As Object

        Try
            ' Start Revision Manager.
            objApplication = New RevisionManager.Application

            ' Get reference to Insight object.
            objInsight = objApplication.Insight

            aDocumentsToUpload(0) = "D:\InsightCache\Insight\solidvm\Engineering\PreReleased\PreReleasedDocLib\Summit.par"
            aDocumentsToUpload(1) = "D:\InsightCache\Insight\solidvm\Engineering\PreReleased\PreReleasedDocLib\Summit-1.par"

            objInsight.UploadDocumentsToServer(aDocumentsToUpload.Length, aDocumentsToUpload)
        Catch ex As Exception
            ' Write any errors to console.
            Console.WriteLine(ex.Message)
        Finally
            ' Release COM Objects.
            If Not (objInsight Is Nothing) Then
                Marshal.ReleaseComObject(objInsight)
                objInsight = Nothing
            End If

            If Not (objApplication Is Nothing) Then
                objApplication.Quit()
                Marshal.ReleaseComObject(objApplication)
                objApplication = Nothing
            End If
        End Try
    End Sub

End Module
See Also

Insight Object  | Insight Members

Send comments on this topic.