<?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: ilogic - copy drawing iproperty to model iproperty in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715483#M93639</link>
    <description>&lt;P&gt;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just cross verified that below iLogic code works for different model name and drawing file name. Through Vault API, may be possible to retrieve model name associated with drawing and visa versa.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'copy idw drawing number to ipt custom iproperties'Exit rule If no Part or Assembly Is in the drawing yet
If (ThisDrawing.ModelDocument Is Nothing) Then Return
'get the file name of the doc the drawing points to
modelName = IO.Path.GetFileName(ThisDrawing.ModelDocument.FullFileName)
'read the values from the iProperties in the part file'then apply to the iProperties with the same name in the drawing file
iProperties.Value(modelName,"Custom", "Drawing Number")=iProperties.Value("Project", "Part Number")&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jan 2018 10:02:34 GMT</pubDate>
    <dc:creator>chandra.shekar.g</dc:creator>
    <dc:date>2018-01-24T10:02:34Z</dc:date>
    <item>
      <title>ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7711938#M93634</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently work in a company that has uses an automatic file numbering system for ipt and iam files. The idw file names are picked from the project's Master document register. In other words, the models get a random number / name, while the idw's are predined. This means that there's NO link what so ever between the model file name and the idw file name.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i want to create an ilogic rule that simply copies the idw's file name to a custom iproperty in the model.&lt;/P&gt;&lt;P&gt;I would like to do this, so I can find out (without opening vault) which idw is linked to a specific model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to do this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made this rule, which only works for models with the same name, doesn't it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;copy idw drawing number to ipt custom iproperties&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Exit rule If no Part or Assembly Is in the drawing yet&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ThisDrawing&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ModelDocument&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Return&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;get the file name of the doc the drawing points to&lt;/SPAN&gt;
&lt;SPAN&gt;modelName&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;IO&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Path&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;GetFileName&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ThisDrawing&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ModelDocument&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;read the values from the iProperties in the part file&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;then apply to the iProperties with the same name in the drawing file&lt;/SPAN&gt;
&lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Value&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;modelName&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Custom&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Drawing Number&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Value&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Part Number&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. I already created to custom iproperty in the model, to avoid any problems there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 08:13:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7711938#M93634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-23T08:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715183#M93635</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You better use the Vault API to achieve this.&lt;/P&gt;&lt;P&gt;Because:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;What If the file is renamed in the vault&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;What If the file is&amp;nbsp;moved in the vault&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I can learn you haw to do this without adding any property to the documents......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 07:37:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715183#M93635</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T07:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715423#M93636</link>
      <description>&lt;P&gt;I'm curious (mainly because I have never personally touched the Vault API) as to what you are suggesting here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it fairly straight forward to retrieve&amp;nbsp;information from Vault by adding reference to the Vault dll to an iLogic rule or NET addin?&amp;nbsp; I've always been too scared to try in case I bring a server down.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any examples?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 09:39:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715423#M93636</guid>
      <dc:creator>waynehelley</dc:creator>
      <dc:date>2018-01-24T09:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715448#M93637</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you familiar with creating add ins for inventor using VB.net?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 09:48:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715448#M93637</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T09:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715474#M93638</link>
      <description>&lt;P&gt;Yes I am.&amp;nbsp; What I'm curious about is how easy it is to use the Vault object library and how easy it is to connect to a Vault server.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 09:57:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715474#M93638</guid>
      <dc:creator>waynehelley</dc:creator>
      <dc:date>2018-01-24T09:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715483#M93639</link>
      <description>&lt;P&gt;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just cross verified that below iLogic code works for different model name and drawing file name. Through Vault API, may be possible to retrieve model name associated with drawing and visa versa.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'copy idw drawing number to ipt custom iproperties'Exit rule If no Part or Assembly Is in the drawing yet
If (ThisDrawing.ModelDocument Is Nothing) Then Return
'get the file name of the doc the drawing points to
modelName = IO.Path.GetFileName(ThisDrawing.ModelDocument.FullFileName)
'read the values from the iProperties in the part file'then apply to the iProperties with the same name in the drawing file
iProperties.Value(modelName,"Custom", "Drawing Number")=iProperties.Value("Project", "Part Number")&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 10:02:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715483#M93639</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-01-24T10:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715500#M93640</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are better solutions for this without properties.&lt;/P&gt;&lt;P&gt;Because Vault is used this method is not the best way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 10:10:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715500#M93640</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T10:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715521#M93641</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are better solutions for this without properties.&lt;/P&gt;
&lt;P&gt;Because Vault is used this method is not the best way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes! There might be better solutions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 10:22:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715521#M93641</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-01-24T10:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715525#M93642</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our intention is the same I think.....&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 10:24:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7715525#M93642</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T10:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7716088#M93643</link>
      <description>&lt;P&gt;Hi Bradeneurope,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really see the issue regarding the renaming or file moving comment. As long as the rule runs (i.e. every time the drawing gets saved) the new iproperty gets updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That said, I am interested in your solution (vault API). Do you have some examples or something you can share?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 13:36:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7716088#M93643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-24T13:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7717202#M93644</link>
      <description>Yes.&lt;BR /&gt;&lt;BR /&gt;Wil come back soon</description>
      <pubDate>Wed, 24 Jan 2018 18:19:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7717202#M93644</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T18:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7717305#M93645</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I could try to explain my arguments, but this is not related to the topic I think.&lt;BR /&gt;&lt;BR /&gt;Yes I have example codes.&lt;BR /&gt;I use these methods a lot, because of the arguments above.&lt;BR /&gt;&lt;BR /&gt;I am not on my desk right now so the examples will follow soon.&lt;BR /&gt;&lt;BR /&gt;If you could already post an inventor add in as text, I can add my code to it. This is the easiest way I think.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 24 Jan 2018 18:43:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7717305#M93645</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-24T18:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7722170#M93646</link>
      <description>&lt;P&gt;@Anonymous&lt;/P&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;&lt;P&gt;Are you also familiar with vb.net and Add-ins?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Than please:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you could already post an inventor add in as text, I can add my code to it. This is the easiest way I think.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="autodesk-reply-time"&gt;&lt;SPAN&gt;01-24-2018 07:43 PM&lt;/SPAN&gt; &lt;SPAN&gt;in reply to:&lt;/SPAN&gt; &lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3655587" target="_blank"&gt;Boijens&lt;/A&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-body"&gt;&lt;DIV class="lia-message-body-content"&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I could try to explain my arguments, but this is not related to the topic I think.&lt;BR /&gt;&lt;BR /&gt;Yes I have example codes.&lt;BR /&gt;I use these methods a lot, because of the arguments above.&lt;BR /&gt;&lt;BR /&gt;I am not on my desk right now so the examples will follow soon.&lt;BR /&gt;&lt;BR /&gt;If you could already post an inventor add in as text, I can add my code to it. This is the easiest way I think.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jan 2018 08:38:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7722170#M93646</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-25T08:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7731578#M93647</link>
      <description>&lt;P&gt;Hi'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am ready to edit the code for you, but:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Are you also familiar with vb.net and Add-ins?&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Than please:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If you could already post an inventor add in as text, I can add my code to it. This is the easiest way I think.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;!!!!!!!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;Hi I have read your post again and if you really want to do it like you wrote then my option is not possible:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;Now i want to create an ilogic rule that simply copies the idw's file name to a custom iproperty in the model.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;I would like to do this, so I can find out &lt;STRONG&gt;(without opening vault)&lt;/STRONG&gt; which idw is linked to a specific model.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;!!!!!!!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I think my option, &lt;/FONT&gt;&lt;FONT color="#000000"&gt;Reading it from Vault is still the better way.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I am waiting for your respond.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 11:48:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7731578#M93647</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-29T11:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7735164#M93648</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even though I am really interested in it, I am unfortunately not very accustomed to using vb.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am well aware I can find out through vault which drawing is attached to a part/assembly. The only thing I am trying to achieve is less mouse clicking. If I'ld have an iproperty showing the drawing number, I wouldn't have go in vault to find out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 07:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7735164#M93648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-30T07:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic - copy drawing iproperty to model iproperty</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7735221#M93649</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do you want to achieve:&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A button which will prompt or showing you the related drawing reference in vault (Vault Path's)?&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;A button which will prompt or showing you the related&amp;nbsp;parts and assemblies reference in vault (Vault Path's)?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;think this would be the simplest way!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 07:42:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-copy-drawing-iproperty-to-model-iproperty/m-p/7735221#M93649</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-30T07:42:41Z</dc:date>
    </item>
  </channel>
</rss>

