<?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 Automatically naming sheets in a * .idw file. in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8426677#M91776</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hello.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would ask for information if Inventor 2015 is able to automatically assign names of Sheets in the * idw file as one of the iProperties parameters from the 3d model of the * .iam or * .ipt file?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I will be grateful for any help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sincerely&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Wojciech Janko&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Nov 2018 09:11:46 GMT</pubDate>
    <dc:creator>farmerstain</dc:creator>
    <dc:date>2018-11-27T09:11:46Z</dc:date>
    <item>
      <title>Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8426677#M91776</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would ask for information if Inventor 2015 is able to automatically assign names of Sheets in the * idw file as one of the iProperties parameters from the 3d model of the * .iam or * .ipt file?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I will be grateful for any help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sincerely&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Wojciech Janko&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 09:11:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8426677#M91776</guid>
      <dc:creator>farmerstain</dc:creator>
      <dc:date>2018-11-27T09:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8427517#M91790</link>
      <description>&lt;P&gt;Yes you can... Can you please give an example of what you're trying to do so we can give you a relevant example&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 15:18:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8427517#M91790</guid>
      <dc:creator>clutsa</dc:creator>
      <dc:date>2018-11-27T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8429299#M91817</link>
      <description>&lt;P&gt;Hello.&lt;BR /&gt;I would need to automatically name Sheets.&lt;BR /&gt;I have a * .idw document file, which has about 100 sheets, on each sheet there will be a single part (* .ipt) or assembly (* .iam).&lt;BR /&gt;I would like the name of the sheet to be automatically changed from "Sheet" to the string which was entered in iProperties -&amp;gt; "Project" -&amp;gt; "Version number".&lt;BR /&gt;for examples: "Sheet" -&amp;gt; "2.1.1.3.5"&lt;BR /&gt;I would be extremely grateful for your help, because manually naming each sheet is quite laborious and you can be mistaken.&lt;BR /&gt;Greetings.&lt;BR /&gt;Wojtek&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 06:48:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8429299#M91817</guid>
      <dc:creator>farmerstain</dc:creator>
      <dc:date>2018-11-28T06:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8433508#M91865</link>
      <description>&lt;P&gt;It would look something like this.&lt;/P&gt;
&lt;PRE&gt;Dim app As Application = ThisApplication
Dim doc As DrawingDocument = app.ActiveDocument
Dim oSheet As Sheet
Dim oView As DrawingView 
Dim docM As Document
For Each oSheet In doc.Sheets
	oView = oSheet.DrawingViews(1)
	docM = oView.ReferencedDocumentDescriptor.ReferencedDocument
	oSheet.Name = docM.PropertySets.Item("Design Tracking Properties").Item("Part Property Revision Id").Value 'I couldn't find "Version Number" in "Project" but I'm in 2018
	'oSheet.Name = docM.PropertySets.Item("User Defined Properties").Item("Version Number").Value 'This would be for a custom property
Next&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Nov 2018 15:05:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8433508#M91865</guid>
      <dc:creator>clutsa</dc:creator>
      <dc:date>2018-11-29T15:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8435435#M91894</link>
      <description>&lt;P&gt;Hello.&lt;BR /&gt;Thank you for the program, but it does not end up changing the name to "Revision Number".&lt;BR /&gt;In the drawing I have marked what needs to be copied and where to insert.&lt;BR /&gt;I just wanted to point out that "iProperties" are from the 3D model and the sheet name is in the * .idw document file.&lt;BR /&gt;I would be grateful for your help in solving this problem.&lt;BR /&gt;Sincerely&lt;BR /&gt;Wojtek&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 07:51:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8435435#M91894</guid>
      <dc:creator>farmerstain</dc:creator>
      <dc:date>2018-11-30T07:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8436210#M91911</link>
      <description>&lt;P&gt;Try this for Revision Number...&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;app&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Application&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt; = &lt;SPAN&gt;app&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sheet&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oView&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingView&lt;/SPAN&gt; 
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;docM&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;Sheets&lt;/SPAN&gt;
	&lt;SPAN&gt;oView&lt;/SPAN&gt; = &lt;SPAN&gt;oSheet&lt;/SPAN&gt;.&lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;(1)
	&lt;SPAN&gt;docM&lt;/SPAN&gt; = &lt;SPAN&gt;oView&lt;/SPAN&gt;.&lt;SPAN&gt;ReferencedDocumentDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;ReferencedDocument&lt;/SPAN&gt;
	&lt;SPAN&gt;oSheet&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"words to prepend here"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;docM&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Inventor Summary Information"&lt;/SPAN&gt;).&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Revision Number"&lt;/SPAN&gt;).&lt;SPAN&gt;Value&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"words to apend here"&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Sorry I don't see a marked up drawing... screen shots might help me understand what you want better. I was under the impression you would want the iProperty from the model because it went with the only part on that sheet.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 13:58:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8436210#M91911</guid>
      <dc:creator>clutsa</dc:creator>
      <dc:date>2018-11-30T13:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically naming sheets in a * .idw file.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8440470#M91974</link>
      <description>&lt;P&gt;Hello.&lt;BR /&gt;Thank you very much for your help, the formula works perfectly &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;BR /&gt;You are great &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;BR /&gt;Thank you again and best regards &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 09:57:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automatically-naming-sheets-in-a-idw-file/m-p/8440470#M91974</guid>
      <dc:creator>farmerstain</dc:creator>
      <dc:date>2018-12-03T09:57:42Z</dc:date>
    </item>
  </channel>
</rss>

