<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Etransmit in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8287439#M24754</link>
    <description>&lt;P class="p"&gt;The Transmittal Object library does not support the following operations that can be performed with the AutoCAD ETRANSMIT command:&lt;/P&gt;
&lt;UL id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__UL_6CEBBC65D046420F8823AB402010E36A" class="ul"&gt;
&lt;LI id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__LI_722982A93F3D43608CB919A1625AAE25" class="li"&gt;Creation of a ZIP file&lt;/LI&gt;
&lt;LI id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__LI_77661FB4E51A4C71B87F144C90D254C8" class="li"&gt;Send an email with the transmittal package as an attachment&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__GUID-BB3269AB-C541-4B1D-8CBD-4FC9DB3EFF19" class="note note"&gt;&lt;SPAN class="notetitle"&gt;Note:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The creation of a ZIP file or sending a transmittal pack as an email attachment can be done using a Third-party library or one of the appropriate namespace in the .NET Framework.&lt;/DIV&gt;
&lt;DIV class="note note"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="note note"&gt;For documentation Transmittal API -&amp;nbsp;&lt;A title="Transmittal" href="https://help.autodesk.com/view/OARX/2019/ENU/?guid=GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290" target="_blank"&gt;Transmittal API&lt;/A&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 24 Sep 2018 07:25:22 GMT</pubDate>
    <dc:creator>moogalm</dc:creator>
    <dc:date>2018-09-24T07:25:22Z</dc:date>
    <item>
      <title>Etransmit</title>
      <link>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8283876#M24753</link>
      <description>&lt;P&gt;HI Guys..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using this sample code to create etransmit. The code work correctly, but I would to know if there is any option to set for create a zip file instead folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Stefano&lt;/P&gt;&lt;PRE&gt;Function eTransmitaDWG(sDWGtoZip As String, sZipPath As String) As String
        Dim sErr As String = ""

        '/////////////// Call ITransmittalOperation::getTransmittalInfoInterface() to get the ITransmittalInfo interface.
        Dim trmOp As New TransmittalOperation
        trmOp.createTransmittalPackage()

        '/////////////// Use the ITransmittalInfo interface methods to set up the destination folder and other settings.
        Dim trmInfo As TransmittalInfo
        trmInfo = trmOp.getTransmittalInfoInterface
        trmInfo.destinationRoot = sZipPath
        '    'tweak following settings to either include or exclude files in the package
        trmInfo.includeImageFile = True
        trmInfo.includeXrefDwg = True
        trmInfo.includePlotFile = True
        trmInfo.organizedFolder = True
        trmInfo.plotStyleTablePath = True

        'note: limitation - currently saveVersion cannot be set so following will have no effect (it will default to 0=eNoConversion)
        trmInfo.saveVersion = SaveDwgFormat.eNoConversion

        '/////////////// Add files to the transmittal set by calling the appropriate ITransmittalOperation add methods.
        Dim trmFile As New TransmittalFile
        Dim retVal As AddFileReturnVal
        If My.Computer.FileSystem.FileExists(sDWGtoZip) Then

            Try
                retVal = trmOp.addDrawingFile(sDWGtoZip, trmFile)
                If retVal = TRANSMITTALLib.AddFileReturnVal.eFileAdded Then

                Else
                    sErr = retVal.ToString
                End If
            Catch ex As Autodesk.AutoCAD.Runtime.Exception
                sErr = ex.Message &amp;amp; vbNewLine &amp;amp; ex.ToString
            End Try
        Else
            Return "File Not found"
        End If

        '/////////////// Investigate the file dependencies by checking the transmittal graph using the ITransmittalFilesGraph interface methods.
        Dim trmGraph As TransmittalFilesGraph
        trmGraph = trmOp.getTransmittalGraphInterface

        trmOp.createTransmittalPackage() 'copy the files to the folder set by destPath

        'sErr = sTESTSTRING
        Return sErr
    End Function&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Sep 2018 11:35:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8283876#M24753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-21T11:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Etransmit</title>
      <link>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8287439#M24754</link>
      <description>&lt;P class="p"&gt;The Transmittal Object library does not support the following operations that can be performed with the AutoCAD ETRANSMIT command:&lt;/P&gt;
&lt;UL id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__UL_6CEBBC65D046420F8823AB402010E36A" class="ul"&gt;
&lt;LI id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__LI_722982A93F3D43608CB919A1625AAE25" class="li"&gt;Creation of a ZIP file&lt;/LI&gt;
&lt;LI id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__LI_77661FB4E51A4C71B87F144C90D254C8" class="li"&gt;Send an email with the transmittal package as an attachment&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV id="GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290__GUID-BB3269AB-C541-4B1D-8CBD-4FC9DB3EFF19" class="note note"&gt;&lt;SPAN class="notetitle"&gt;Note:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The creation of a ZIP file or sending a transmittal pack as an email attachment can be done using a Third-party library or one of the appropriate namespace in the .NET Framework.&lt;/DIV&gt;
&lt;DIV class="note note"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="note note"&gt;For documentation Transmittal API -&amp;nbsp;&lt;A title="Transmittal" href="https://help.autodesk.com/view/OARX/2019/ENU/?guid=GUID-B9CEBF12-0FC3-427F-B227-6AE90DEA1290" target="_blank"&gt;Transmittal API&lt;/A&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 24 Sep 2018 07:25:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8287439#M24754</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2018-09-24T07:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Etransmit</title>
      <link>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8291589#M24755</link>
      <description>Thanks&lt;BR /&gt;Stefano</description>
      <pubDate>Tue, 25 Sep 2018 16:48:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/etransmit/m-p/8291589#M24755</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-25T16:48:55Z</dc:date>
    </item>
  </channel>
</rss>

