<?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: Add File1.dwg contents to File2.dwg in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11521453#M11411</link>
    <description>&lt;P&gt;Sir,&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code works fine but some asian characters are not displaying correctly in File2, after copying from File1 to File2. In File2 the text displays as ????, but when I click on it and check the properties, it shows correctly in properties.&lt;/P&gt;&lt;P&gt;Could you kindly suggest how to fix it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rao&lt;/P&gt;</description>
    <pubDate>Mon, 31 Oct 2022 22:31:26 GMT</pubDate>
    <dc:creator>soari.do</dc:creator>
    <dc:date>2022-10-31T22:31:26Z</dc:date>
    <item>
      <title>Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11477242#M11401</link>
      <description>&lt;P&gt;I have two File1.dwg and File2.dwg with some contents in both of them.&lt;/P&gt;
&lt;P&gt;I want to add File1 contents to the contents of File2&lt;/P&gt;
&lt;P&gt;please help.&amp;nbsp; My code is&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;public void file2file(string fromFile, string toFile) {

// define souce DB
Database fromDb = new Database(false, true);

// define object collection
ObjectIdCollection acObjIdColl = new ObjectIdCollection();

// Lock the current document
using (fromDb) {
// open source file
fromDb.ReadDwgFile(fromFile, FileOpenMode.OpenForReadAndAllShare, false, null);
// Start a transaction
using (Transaction acTrans = fromDb.TransactionManager.StartTransaction()) {
// Open the Block table record for read
BlockTable acBlkTbl;
acBlkTbl = acTrans.GetObject(fromDb.BlockTableId,
OpenMode.ForRead) as BlockTable;
// Open the Block table record Model space for write
BlockTableRecord acBlkTblRec;
acBlkTblRec = acTrans.GetObject(acBlkTbl[BlockTableRecord.ModelSpace],
OpenMode.ForRead) as BlockTableRecord;

// copy/paste each object
foreach (ObjectId id in fromBtr) {
Entity ent = (Entity)fromTr.GetObject(id, OpenMode.ForWrite);
acObjIdColl.Add(ent.ObjectId);

}

// Save the new objects to the database
acTrans.Commit();
}
// Unlock the document
}


// Create a new drawing to copy the objects to
Database acDbNewDoc = new Database(false, true);
using (acDbNewDoc) {
// open source file
acDbNewDoc.ReadDwgFile(toFile, FileOpenMode.OpenForReadAndAllShare, false, null);
// Start a transaction in the new database
using (Transaction acTrans = acDbNewDoc.TransactionManager.StartTransaction()) {
// Open the Block table for read
BlockTable acBlkTblNewDoc;
acBlkTblNewDoc = acTrans.GetObject(acDbNewDoc.BlockTableId,
OpenMode.ForRead) as BlockTable;
// Open the Block table record Model space for read
BlockTableRecord acBlkTblRecNewDoc;
acBlkTblRecNewDoc = acTrans.GetObject(acBlkTblNewDoc[BlockTableRecord.ModelSpace],
OpenMode.ForRead) as BlockTableRecord;
//foreach (Entity id1 in acObjIdColl) {
foreach (Entity nent in acDBObjColl) {
destBtr.AppendEntity(nent);
destTr.AddNewlyCreatedDBObject(nent, true);
}
// Save the copied objects to the database
acTrans.Commit();
}
// Unlock the document
}
// Set the new document current
acDbNewDoc.SaveAs(toFile, DwgVersion.Current);
}&lt;/LI-CODE&gt;
&lt;P&gt;Moderator edit: Put code in code window.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 14:01:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11477242#M11401</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-12T14:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11477379#M11402</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, please use the "Insert/Edit code sample" button (&amp;lt;/&amp;gt;) when you paste code so that it is more readable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code you posted looks like a patchwork of code snippets copied/pasted from multiple sources that seems to never have been tested. It try to use some variable names which have never been declared (fromBtr, formTr, acDbObjCol, destBtr, destTr). Visual Studio alert you for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_gile_0-1665576238212.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1126369iC270C09B45F8A29A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_gile_0-1665576238212.png" alt="_gile_0-1665576238212.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_gile_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditor_gile_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_gile_3-1665576294779.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1126373iEB12E9390C969EB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_gile_3-1665576294779.png" alt="_gile_3-1665576294779.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;        public static void AddFilecontents(string sourceFilename, string targetFileName)
        {
            try
            {
                using (var targetDb = new Database(false, true))
                using (var sourceDb = new Database(false, true))
                {
                    sourceDb.ReadDwgFile(sourceFilename, FileOpenMode.OpenForReadAndAllShare, false, null);
                    targetDb.ReadDwgFile(targetFileName, FileOpenMode.OpenForReadAndAllShare, false, null);
                    var sourceModelSpaceId = SymbolUtilityServices.GetBlockModelSpaceId(sourceDb);
                    var targetModelSpaceId = SymbolUtilityServices.GetBlockModelSpaceId(targetDb);
                    var ids = new ObjectIdCollection();
                    using (var tr = sourceDb.TransactionManager.StartTransaction())
                    {
                        var sourceModelSpace = (BlockTableRecord)tr.GetObject(sourceModelSpaceId, OpenMode.ForRead);
                        foreach (ObjectId id in sourceModelSpace)
                        {
                            ids.Add(id);
                        }
                        tr.Commit();
                    }
                    var mapping = new IdMapping();
                    sourceDb.WblockCloneObjects(ids, targetModelSpaceId, mapping, DuplicateRecordCloning.Ignore, false);
                    targetDb.SaveAs(targetFileName, DwgVersion.Current);
                }
            }
            catch (System.Exception ex)
            {
                Application.ShowAlertDialog(ex.Message);
                var ed = Application.DocumentManager.MdiActiveDocument.Editor;
                ed.WriteMessage($"\n{ex.Message}\n{ex.StackTrace}\n");
            }
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 12:20:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11477379#M11402</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-10-12T12:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11479789#M11403</link>
      <description>&lt;P&gt;Thank you for the help, it worked.&lt;/P&gt;&lt;P&gt;But the position of the entities are not same as in File1.dwg.&lt;/P&gt;&lt;P&gt;if I use this method in serial for different files, like&lt;/P&gt;&lt;P&gt;AddFilecontents(f1, f2);&lt;/P&gt;&lt;P&gt;AddFilecontents(f3, f2);&lt;/P&gt;&lt;P&gt;f1 contents are overlaped by f3 contents in f2.&lt;/P&gt;&lt;P&gt;Any further suggestion, please...&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 11:14:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11479789#M11403</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-13T11:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481290#M11404</link>
      <description>&lt;P&gt;Please, post some simple drawing examples to show what you want.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 21:44:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481290#M11404</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-10-13T21:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481599#M11405</link>
      <description>&lt;P&gt;Please see the attached image&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="expected.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1127169i2EB0B36A90076CF6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="expected.png" alt="expected.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2022 01:26:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481599#M11405</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-14T01:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481674#M11406</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="presentcode.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1127181i673759E4FCA849F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="presentcode.png" alt="presentcode.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2022 02:03:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481674#M11406</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-14T02:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481822#M11407</link>
      <description>&lt;P&gt;AddFilecontents(f1, f2) -&amp;gt; f2&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;public static void AddFilecontents(string sourceFilename, string targetFileName, Point3d insertPoint = new Point3d())
        {
            using (var targetDb = new Database(true, false))
            {
                targetDb.ReadDwgFile(targetFileName, System.IO.FileShare.ReadWrite, false, null);
                using (var sourceDb = new Database(true, false))
                {
                    sourceDb.ReadDwgFile(sourceFilename, System.IO.FileShare.ReadWrite, false, null);
                    Matrix3d matrix = Matrix3d.Displacement(insertPoint - Point3d.Origin);
                    targetDb.Insert(matrix, sourceDb, true);
                    targetDb.SaveAs(targetFileName, DwgVersion.Current);
                }    
            }
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2022 04:01:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11481822#M11407</guid>
      <dc:creator>cuongtk2</dc:creator>
      <dc:date>2022-10-14T04:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11482187#M11408</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12451099"&gt;@soari.do&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The images don't help. The code works with WCS coordinates, keeping the origin (0, 0, 0) of each drawing.&lt;/P&gt;
&lt;P&gt;Please provide DWG files so that we can understand the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a screencast showing the following command in action.&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;        [CommandMethod("TEST")]
        public static void Test()
        {
            AddFilecontents(@"B:\Desktop\Drawings\File1.dwg", @"B:\Desktop\Drawings\File3.dwg");
            AddFilecontents(@"B:\Desktop\Drawings\File2.dwg", @"B:\Desktop\Drawings\File3.dwg");
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="36b886f1-1e56-449e-a5ed-2e81005a9c2d" class="myscreencast-iframe iframe-container active-myscreencast"&gt;&lt;IFRAME src="https://screencast.autodesk.com/Embed/Timeline/36b886f1-1e56-449e-a5ed-2e81005a9c2d" width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/36b886f1-1e56-449e-a5ed-2e81005a9c2d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f8b2a724-dd3f-4542-8dbd-ac46d0592b49" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f8b2a724-dd3f-4542-8dbd-ac46d0592b49"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="660ed163-9536-44ba-8135-01f3f876179f" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/660ed163-9536-44ba-8135-01f3f876179f"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b6f9a688-1b6e-40bd-87a3-beb0a68d6a15" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b6f9a688-1b6e-40bd-87a3-beb0a68d6a15"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="e89ed2ee-52c2-401f-847a-84ec575ccc88" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/e89ed2ee-52c2-401f-847a-84ec575ccc88"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="80a5f4c1-348b-4123-b201-f6f923bafef6" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/80a5f4c1-348b-4123-b201-f6f923bafef6"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="976cf132-bf23-47a3-8c4a-8733d371b0db" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/976cf132-bf23-47a3-8c4a-8733d371b0db"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f891456a-2025-4259-ac0a-17a0f54f420d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f891456a-2025-4259-ac0a-17a0f54f420d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="8fcf81a4-9da7-41e7-b761-a88895e00abd" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/8fcf81a4-9da7-41e7-b761-a88895e00abd"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="0c6382f3-8881-4bbf-93fe-6807f63ba2f4" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/0c6382f3-8881-4bbf-93fe-6807f63ba2f4"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="cff580d9-8635-428e-bc49-e0a8d76bcffc" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/cff580d9-8635-428e-bc49-e0a8d76bcffc"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1cff3812-028b-46a4-afb0-4c542c104675" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1cff3812-028b-46a4-afb0-4c542c104675"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="702fddc6-541f-41c6-bb57-55136b83b9d4" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/702fddc6-541f-41c6-bb57-55136b83b9d4"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="fe82371e-3309-4edf-8de0-31fd96b8bf0b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/fe82371e-3309-4edf-8de0-31fd96b8bf0b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="ba7bf341-61c8-4706-8b03-03cd34bddbc4" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/ba7bf341-61c8-4706-8b03-03cd34bddbc4"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="8712cedf-d57d-4750-a2c8-89e1410f3301" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/8712cedf-d57d-4750-a2c8-89e1410f3301"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="aecf01bb-d74f-453e-bf12-d6217cbc8bc3" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/aecf01bb-d74f-453e-bf12-d6217cbc8bc3"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="02e7453a-b842-4d52-b4a0-c0c2e8b5d676" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/02e7453a-b842-4d52-b4a0-c0c2e8b5d676"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="058cb354-807e-4e0e-8358-0253419c5c05" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/058cb354-807e-4e0e-8358-0253419c5c05"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="21879270-7ee9-4f64-ac7d-0ac7372abaa1" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/21879270-7ee9-4f64-ac7d-0ac7372abaa1"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b2656e19-dc92-4498-98fd-d81a86eb9b6b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b2656e19-dc92-4498-98fd-d81a86eb9b6b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1d7b241a-e0c7-42b0-bc2d-2376b3baf96f" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1d7b241a-e0c7-42b0-bc2d-2376b3baf96f"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="fe399a92-d4b9-446d-86d3-95029723f261" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/fe399a92-d4b9-446d-86d3-95029723f261"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d7bd5d5b-d211-4840-8b87-f8e4e448627a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d7bd5d5b-d211-4840-8b87-f8e4e448627a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="fb7ed070-69c9-45f5-bc97-f84f66ccf876" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/fb7ed070-69c9-45f5-bc97-f84f66ccf876"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="94c57c91-e77d-4f35-aa93-4fd572161c7a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/94c57c91-e77d-4f35-aa93-4fd572161c7a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="bb60a651-366f-4a3e-ac78-292c221166f9" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/bb60a651-366f-4a3e-ac78-292c221166f9"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="54a55e47-f855-4c11-95fb-b9e315bf9b98" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/54a55e47-f855-4c11-95fb-b9e315bf9b98"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="a70594b0-9118-4825-9089-8396773b09a5" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/a70594b0-9118-4825-9089-8396773b09a5"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="6b27e31d-c46a-4d66-9adb-b70dd9a67b78" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/6b27e31d-c46a-4d66-9adb-b70dd9a67b78"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="fa5eafc3-b7c9-48da-9241-edbc06e33f0e" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/fa5eafc3-b7c9-48da-9241-edbc06e33f0e"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2795359b-2a44-4431-ba6e-59f0a704e9a0" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2795359b-2a44-4431-ba6e-59f0a704e9a0"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="660be201-586b-4621-938b-1246eaeafc51" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/660be201-586b-4621-938b-1246eaeafc51"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3ce94081-da32-445e-9e13-0f72d9cc642b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3ce94081-da32-445e-9e13-0f72d9cc642b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="ef75c120-d34a-4bf1-8a30-8ec52fb5613e" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/ef75c120-d34a-4bf1-8a30-8ec52fb5613e"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3a914974-e850-445f-9318-6facde5c9ecb" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3a914974-e850-445f-9318-6facde5c9ecb"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="fcb71945-dec5-4eae-b539-36d0b27084ed" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/fcb71945-dec5-4eae-b539-36d0b27084ed"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="25017818-ec84-4dbd-b6a8-5711d2f17f85" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/25017818-ec84-4dbd-b6a8-5711d2f17f85"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="59c9c150-a36b-468a-8baf-9f11a429ff14" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/59c9c150-a36b-468a-8baf-9f11a429ff14"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="cd862c32-76eb-408d-a9f3-2dbbf730893a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/cd862c32-76eb-408d-a9f3-2dbbf730893a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="80bae978-b261-49af-88ab-cac1b4861d36" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/80bae978-b261-49af-88ab-cac1b4861d36"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="bedaccf1-cdef-4b55-9444-d1845fa13e4c" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/bedaccf1-cdef-4b55-9444-d1845fa13e4c"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="9235c917-2d05-4d19-bcd0-3b05ac1043ea" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/9235c917-2d05-4d19-bcd0-3b05ac1043ea"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b2660fc5-6afe-44fe-86a9-f5d8322ff718" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b2660fc5-6afe-44fe-86a9-f5d8322ff718"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1492b164-54f2-4d03-9cc0-24f9b960b80d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1492b164-54f2-4d03-9cc0-24f9b960b80d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="7c5d868d-0c45-48a4-98e9-12fe27129a87" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/7c5d868d-0c45-48a4-98e9-12fe27129a87"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="a86e6108-ff20-42cc-b6f1-054f6989c0ee" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/a86e6108-ff20-42cc-b6f1-054f6989c0ee"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1d15e9f5-0179-4096-97ce-a26174d12699" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1d15e9f5-0179-4096-97ce-a26174d12699"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="8ef1ddae-d535-45a0-baf4-25d33051cdee" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/8ef1ddae-d535-45a0-baf4-25d33051cdee"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="9f91941f-c123-475c-8737-599251845c77" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/9f91941f-c123-475c-8737-599251845c77"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="35434793-fc65-4677-8590-6cd5cc89bfaf" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/35434793-fc65-4677-8590-6cd5cc89bfaf"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="607fa170-a69d-4929-add9-8d79b8f9a3ff" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/607fa170-a69d-4929-add9-8d79b8f9a3ff"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="364e331f-28ef-4161-ada5-9a78e93db200" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/364e331f-28ef-4161-ada5-9a78e93db200"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="5e8e9372-f14f-49de-899a-fb97cdfff433" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/5e8e9372-f14f-49de-899a-fb97cdfff433"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f09bce6f-91e2-4fb3-9d2a-f5321136476e" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f09bce6f-91e2-4fb3-9d2a-f5321136476e"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1282857e-e572-4bac-90bf-c47887753515" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1282857e-e572-4bac-90bf-c47887753515"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b81661b1-1f09-40bb-8b80-659e90319a06" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b81661b1-1f09-40bb-8b80-659e90319a06"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="5f0ad2e7-3c15-49e5-afea-f50849ec3d7a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/5f0ad2e7-3c15-49e5-afea-f50849ec3d7a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2b85b476-d054-4455-b090-3988c6997ecf" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2b85b476-d054-4455-b090-3988c6997ecf"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="83cd684f-4c86-443f-bf3b-fea03616643b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/83cd684f-4c86-443f-bf3b-fea03616643b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2608bbb1-1efd-4901-a6f4-a53a0bb8008c" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2608bbb1-1efd-4901-a6f4-a53a0bb8008c"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="bb11696f-f567-46a8-89a0-0c82fe00840d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/bb11696f-f567-46a8-89a0-0c82fe00840d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3e985dff-aa76-49b3-b010-497b4c3531a8" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3e985dff-aa76-49b3-b010-497b4c3531a8"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="a8b114c2-de15-45e3-a8e2-1e65205d3941" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/a8b114c2-de15-45e3-a8e2-1e65205d3941"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="764e2eda-b29e-4403-b6b6-a7eacc2f0efb" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/764e2eda-b29e-4403-b6b6-a7eacc2f0efb"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f6a86b2f-7014-48c5-a60d-a9bc1fbe317e" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f6a86b2f-7014-48c5-a60d-a9bc1fbe317e"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="5dc7c27c-a718-43c2-a9bf-ca5cdd2fdde5" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/5dc7c27c-a718-43c2-a9bf-ca5cdd2fdde5"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="dfa47d1b-3476-41ef-9012-36ab572844fa" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/dfa47d1b-3476-41ef-9012-36ab572844fa"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="a8802fdf-f8c6-43ef-ad98-24ee0946f990" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/a8802fdf-f8c6-43ef-ad98-24ee0946f990"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="7964c7b2-af23-49bc-941b-b44c72e886e8" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/7964c7b2-af23-49bc-941b-b44c72e886e8"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="847c40d0-7d18-4f6b-861e-f4926675f2ac" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/847c40d0-7d18-4f6b-861e-f4926675f2ac"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="23c8dadc-de63-44ce-b6be-9407bef60c19" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/23c8dadc-de63-44ce-b6be-9407bef60c19"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4afe8dd2-5f86-4c3b-9382-d340bd513215" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4afe8dd2-5f86-4c3b-9382-d340bd513215"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="eec893e4-9eaa-4ee5-a54f-cb55b3ece94c" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/eec893e4-9eaa-4ee5-a54f-cb55b3ece94c"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="23afe57b-bbe0-4353-b98a-f695ebcef8cb" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/23afe57b-bbe0-4353-b98a-f695ebcef8cb"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="9bd62f8f-2a83-49f9-a555-e0fa9c61f1dc" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/9bd62f8f-2a83-49f9-a555-e0fa9c61f1dc"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f9020665-de30-4b5d-8791-a735546f4f52" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f9020665-de30-4b5d-8791-a735546f4f52"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="7fc2979c-16ab-438c-aec2-865f379c8439" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/7fc2979c-16ab-438c-aec2-865f379c8439"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="585d3c18-9717-47a4-a18e-8194089505c0" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/585d3c18-9717-47a4-a18e-8194089505c0"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="6d823911-aa38-4c6e-8999-34cb4ea4a7cc" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/6d823911-aa38-4c6e-8999-34cb4ea4a7cc"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b0035077-c40a-470c-ac36-202120970919" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b0035077-c40a-470c-ac36-202120970919"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="f38f3d35-98ed-4e22-bebc-6a7ee8abc241" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/f38f3d35-98ed-4e22-bebc-6a7ee8abc241"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="570036fa-0633-47c9-98a9-c99d9354f925" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/570036fa-0633-47c9-98a9-c99d9354f925"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1e56c93b-351e-44ac-acef-1f6b6c1ee3ef" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1e56c93b-351e-44ac-acef-1f6b6c1ee3ef"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="e7638def-e6fc-4028-9629-2dd43d6b95d7" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/e7638def-e6fc-4028-9629-2dd43d6b95d7"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="baa6ca6c-4744-495e-9bc4-84e81f27c3cc" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/baa6ca6c-4744-495e-9bc4-84e81f27c3cc"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="efba7a66-667d-45db-8c58-354f76bc44bf" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/efba7a66-667d-45db-8c58-354f76bc44bf"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4bb423c4-81de-4537-beba-f76cdbf6c72b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4bb423c4-81de-4537-beba-f76cdbf6c72b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4a0b8d02-0c41-40d7-ab6b-51f2b36208a2" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4a0b8d02-0c41-40d7-ab6b-51f2b36208a2"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="aca531c9-064a-4557-b1d7-99670d9797fb" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/aca531c9-064a-4557-b1d7-99670d9797fb"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d831056a-548c-4f45-8d90-b9b18d295baa" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d831056a-548c-4f45-8d90-b9b18d295baa"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4dc3a0f8-453e-4569-af6c-462bf9524d26" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4dc3a0f8-453e-4569-af6c-462bf9524d26"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="6b5e55f5-ca75-46d0-8e53-6d27a986d6db" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/6b5e55f5-ca75-46d0-8e53-6d27a986d6db"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="11ad0db3-35bd-4700-8d8d-13c4c03083a2" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/11ad0db3-35bd-4700-8d8d-13c4c03083a2"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="06b46d6a-40b0-4916-a656-2825d1b6ddc4" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/06b46d6a-40b0-4916-a656-2825d1b6ddc4"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2c71b800-90c2-497b-8342-220d24fb0c99" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2c71b800-90c2-497b-8342-220d24fb0c99"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="08dc985c-b786-454a-8966-3a43493c012d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/08dc985c-b786-454a-8966-3a43493c012d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d10aa2a9-285f-47c4-b7b8-fb4810cc809d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d10aa2a9-285f-47c4-b7b8-fb4810cc809d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d347fed6-1f93-4cf8-958c-5ec9158d196a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d347fed6-1f93-4cf8-958c-5ec9158d196a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="1d45c8d5-a4a9-402d-9cae-8aba72de329b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/1d45c8d5-a4a9-402d-9cae-8aba72de329b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b6ba8d47-4998-4765-b4ea-8bfa6acfe6cc" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b6ba8d47-4998-4765-b4ea-8bfa6acfe6cc"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b40500d5-efcf-4617-90b3-9bc878c79639" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b40500d5-efcf-4617-90b3-9bc878c79639"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="bac4e3e6-75a8-4952-b1f2-40ff899982bf" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/bac4e3e6-75a8-4952-b1f2-40ff899982bf"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Oct 2022 08:06:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11482187#M11408</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-10-14T08:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11485473#M11409</link>
      <description>&lt;P&gt;Thank you so much, it helped me a lot, I could adjust the coordinates.&lt;/P&gt;&lt;P&gt;One other issue I faced, which I did not expect.&lt;/P&gt;&lt;P&gt;I coded to remove duplicates, but after removing duplicates, I opened the file and "Select-All" run "Overkill" command, it showed&lt;/P&gt;&lt;P&gt;0 duplicates deleted&lt;/P&gt;&lt;P&gt;8360 overlapping objects or segments deleted. (see image for reference)&lt;/P&gt;&lt;P&gt;I have no idea how to identify and delete overlapping objects.&lt;/P&gt;&lt;P&gt;Please help me to delete overlapping objects using C#.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="overlapping.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1127906iF693F1C7F57FEFB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="overlapping.png" alt="overlapping.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2022 01:05:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11485473#M11409</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-16T01:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11500802#M11410</link>
      <description>&lt;P&gt;this is so beautiful! I think there should be something like this;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding X or Y coordinates from outside and collecting the drawings according to this coordinate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is overlapping in the current code...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am attaching sample dwg.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;In the example, I gave the value of X coordinate 300.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;and that should go incrementally.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;In the form of 300, 600,900, so...&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Of course, in this case, excessive space of drawing-parts may occur.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;this is editable.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;from the drawing.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2022 09:18:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11500802#M11410</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2022-10-22T09:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11521453#M11411</link>
      <description>&lt;P&gt;Sir,&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code works fine but some asian characters are not displaying correctly in File2, after copying from File1 to File2. In File2 the text displays as ????, but when I click on it and check the properties, it shows correctly in properties.&lt;/P&gt;&lt;P&gt;Could you kindly suggest how to fix it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rao&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 22:31:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11521453#M11411</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-10-31T22:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11521827#M11412</link>
      <description>Sir,&lt;BR /&gt;&lt;BR /&gt;the code works fine but some asian characters are not displaying correctly in File2, after copying from File1. In File2 the text displays as ????, but when I click on it and check the properties, it shows correctly in properties, but not in model space.&lt;BR /&gt;&lt;BR /&gt;Could you kindly suggest how to fix it.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Rao</description>
      <pubDate>Tue, 01 Nov 2022 03:26:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11521827#M11412</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-11-01T03:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522052#M11413</link>
      <description>&lt;P&gt;Sorry, I have no idea. I only use Latin characters.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 06:32:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522052#M11413</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-11-01T06:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522240#M11414</link>
      <description>&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;before:&lt;/P&gt;&lt;P&gt;dwg1: Text style "Standard"&amp;nbsp; use font &lt;U&gt;txt.shx&lt;/U&gt;&lt;/P&gt;&lt;P&gt;dwg2: Text style "Standard"&amp;nbsp; use font &lt;U&gt;Arial.ttf&lt;/U&gt; , dbtext1 content "việt nam"&lt;/P&gt;&lt;P&gt;after import dwg2 to dwg1 :&lt;/P&gt;&lt;P&gt;dbtext1 &lt;SPAN class=""&gt;display&amp;nbsp;&lt;/SPAN&gt;content "vi?t nam"&amp;nbsp;&amp;nbsp;in dwg1, because txt.shx not support Unicode chacrater.&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;You must note that the font in the textstyle of 2 drawings must be the same.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 08:34:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522240#M11414</guid>
      <dc:creator>cuongtk2</dc:creator>
      <dc:date>2022-11-01T08:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522861#M11415</link>
      <description>&lt;P&gt;Thank you sir,&lt;/P&gt;&lt;P&gt;Here is the result, please see attached image.&lt;/P&gt;&lt;P&gt;In properties of both files it shows correctly and property name is also same.&lt;/P&gt;&lt;P&gt;But in model space font is not correctly displaying.&lt;/P&gt;&lt;P&gt;Any further settings suggested.&lt;/P&gt;&lt;P&gt;Please.&lt;/P&gt;&lt;P&gt;Thankyou&lt;/P&gt;&lt;P&gt;Rao&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="file.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1134599iB2F856DFCA0D4AF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="file.png" alt="file.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 13:31:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11522861#M11415</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-11-01T13:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11523423#M11416</link>
      <description>&lt;P&gt;Check the Font of the 'Standard' textstyle in both files.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 17:11:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11523423#M11416</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-11-01T17:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add File1.dwg contents to File2.dwg</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11528358#M11417</link>
      <description>&lt;P&gt;Thank you sir,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I solved in other way.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 14:21:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-file1-dwg-contents-to-file2-dwg/m-p/11528358#M11417</guid>
      <dc:creator>soari.do</dc:creator>
      <dc:date>2022-11-03T14:21:03Z</dc:date>
    </item>
  </channel>
</rss>

