<?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: Copy All data from sheet to another sheet in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/8917701#M99795</link>
    <description>&lt;P&gt;The most straightforward way I can think of to do this would be to copy the entire sheet to another empty drawing file and then copy it back to the drawing you want it in. Once you do that just simply change the sheet size. Unfortunately inventor wont allow you to simply copy a sheet within a drawing so you need to use another drawing as a workaround.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2019 17:37:09 GMT</pubDate>
    <dc:creator>AdamAG99T</dc:creator>
    <dc:date>2019-07-18T17:37:09Z</dc:date>
    <item>
      <title>Copy All data from sheet to another sheet</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/8917653#M99793</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe my question sound stupid, but that is what i need, and I hope someone can help me with ilogic or vb.net.&lt;/P&gt;&lt;P&gt;My situation is, I have sheet1 with border, titleblock, views, note... with size is A4.&lt;/P&gt;&lt;P&gt;Now, I want copy all thing from sheet1 to sheet BUT size is A3. Just copy all of sheet1, ignore size between them.&lt;/P&gt;&lt;P&gt;How should I do ? Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:17:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/8917653#M99793</guid>
      <dc:creator>SandmanINV</dc:creator>
      <dc:date>2019-07-18T17:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Copy All data from sheet to another sheet</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/8917701#M99795</link>
      <description>&lt;P&gt;The most straightforward way I can think of to do this would be to copy the entire sheet to another empty drawing file and then copy it back to the drawing you want it in. Once you do that just simply change the sheet size. Unfortunately inventor wont allow you to simply copy a sheet within a drawing so you need to use another drawing as a workaround.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:37:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/8917701#M99795</guid>
      <dc:creator>AdamAG99T</dc:creator>
      <dc:date>2019-07-18T17:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy All data from sheet to another sheet</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/12010682#M153461</link>
      <description>&lt;P&gt;Thats correct&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6045674"&gt;@AdamAG99T&lt;/a&gt;&amp;nbsp; &amp;amp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/797318"&gt;@SandmanINV&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Here's an example I use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;Main&lt;/SPAN&gt; &lt;SPAN&gt;IDW_DuplicateSheet&lt;/SPAN&gt;()

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
 &lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;tmpDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
 &lt;SPAN&gt;tmpDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;kDrawingDocumentObject&lt;/SPAN&gt;, , &lt;SPAN&gt;True&lt;/SPAN&gt;)


&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;newSheet&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sheet&lt;/SPAN&gt;
 &lt;SPAN&gt;newSheet&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;CopyTo&lt;/SPAN&gt;(&lt;SPAN&gt;tmpDoc&lt;/SPAN&gt;)

&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;newSheet&lt;/SPAN&gt;.&lt;SPAN&gt;CopyTo&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;)

&lt;SPAN&gt;tmpDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Close&lt;/SPAN&gt; (&lt;SPAN&gt;True&lt;/SPAN&gt;)

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2023 23:39:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/copy-all-data-from-sheet-to-another-sheet/m-p/12010682#M153461</guid>
      <dc:creator>forbillian</dc:creator>
      <dc:date>2023-06-04T23:39:30Z</dc:date>
    </item>
  </channel>
</rss>

