<?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: Auto numbering for new files in Inventor 2018 in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995490#M6682</link>
    <description>&lt;P&gt;Please don't confuse this forum with free code generator.&lt;/P&gt;&lt;P&gt;Now you have a code which works. You can look inside, try to debug them, use Logger to check variables and its values.&lt;/P&gt;&lt;P&gt;It is not hard to adapt the code for your needs but try it yourself.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Sep 2024 10:07:29 GMT</pubDate>
    <dc:creator>Michael.Navara</dc:creator>
    <dc:date>2024-09-02T10:07:29Z</dc:date>
    <item>
      <title>Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12988857#M6675</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;I have a question to You. I know that is possible to get auto numbering in Vault client but I have just Vault basic. I think that I cant switch in settings of autonumbering for new files. I want to get new filename like (for example A-000001 then A-000002 ...). Is it any solution to do this without Vault client? Somebody know how to do this?&lt;/P&gt;&lt;P&gt;Thanks for all responses, regards!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 11:33:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12988857#M6675</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-08-29T11:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12993312#M6676</link>
      <description>&lt;P&gt;It is feasible, but the code is too complex for this forum. The implementation depends on your needs.&lt;/P&gt;&lt;P&gt;In general you need to define detailed specification of you needs which is important for successful implementation:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How many users will use this auto-numbering tool&lt;/LI&gt;&lt;LI&gt;Where you will store the information about used numbers&lt;/LI&gt;&lt;LI&gt;Which programs will access this source of numbers&lt;/LI&gt;&lt;LI&gt;Can user work off-line&lt;/LI&gt;&lt;LI&gt;Etc.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This is just a sample of basic questions which needs to be answered before you start coding.&lt;/P&gt;</description>
      <pubDate>Sat, 31 Aug 2024 15:36:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12993312#M6676</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2024-08-31T15:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12994574#M6677</link>
      <description>&lt;P&gt;Just I need it for 1 PC for only myself uses . If if will be possible I want to have chance for us auto numbering or skip this step. I wondered that sources of numbers will in excel (or maybe do You know any better ideas)?&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2024 19:38:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12994574#M6677</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-01T19:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995055#M6678</link>
      <description>&lt;P&gt;In this simple case use time stamp for auto-number. I use this for my hobby projects and it works fine.&lt;/P&gt;&lt;P&gt;The easiest way is to implement your custom external iLogic rule and use them as "Save" command.&lt;/P&gt;&lt;P&gt;This rule can suggest filename based on current date and time like "A-20240902-0735.iam".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another simple approach is to use simple text file with the last used sequential number and each click on Save button suggest the next one and update the value in this source.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 05:39:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995055#M6678</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2024-09-02T05:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995128#M6679</link>
      <description>&lt;P&gt;Both solution sounds good but could you share a code for external iLogic rule for sign a file of date and hour or could you explain how to do option number 2 with "simple text file with the last used sequential number"?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 06:25:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995128#M6679</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-02T06:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995299#M6680</link>
      <description>&lt;P&gt;In attachment is the sample code from &lt;A href="https://help.holixa.com/holixa-tools4inventor/commands-overview/ilogic-samples/save-ts" target="_blank"&gt;T4I&lt;/A&gt;. It can be used as good starting point for you.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 08:01:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995299#M6680</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2024-09-02T08:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995384#M6681</link>
      <description>&lt;P&gt;Thanks so much, it works so good but I have one question. Is it possible to create every parts in same folder like project. This macro create a new folder in project and put every files (.ipt .iam) over there. I dont know witch one line I should delate.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 08:44:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995384#M6681</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-02T08:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995490#M6682</link>
      <description>&lt;P&gt;Please don't confuse this forum with free code generator.&lt;/P&gt;&lt;P&gt;Now you have a code which works. You can look inside, try to debug them, use Logger to check variables and its values.&lt;/P&gt;&lt;P&gt;It is not hard to adapt the code for your needs but try it yourself.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 10:07:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12995490#M6682</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2024-09-02T10:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999732#M6683</link>
      <description>&lt;P&gt;Ok, I understand that I ask about too much but I tried change it alone and still I have a problem with it. If you can help with it, I will be grateful!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 07:55:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999732#M6683</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-04T07:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999883#M6684</link>
      <description>&lt;P&gt;Try to focus on this line in my code.&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;saveFileDialog.FileName = dirInfo.FullName &amp;amp; "\" &amp;amp; fileName&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 09:30:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999883#M6684</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2024-09-04T09:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999904#M6685</link>
      <description>&lt;P&gt;Thank You so so much!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 09:42:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/12999904#M6685</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-04T09:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Auto numbering for new files in Inventor 2018</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/13030834#M6686</link>
      <description>&lt;P&gt;Hello, I got a code from&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1104556" target="_self"&gt;&lt;SPAN class=""&gt;Michael.Navara&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;and it works good, but I want to change one thing. This code create a folder in project and there are localizated all creating parts. I want to that every parts would creating in project folder. Anybody know how to change a code that works like I want?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 13:22:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/auto-numbering-for-new-files-in-inventor-2018/m-p/13030834#M6686</guid>
      <dc:creator>cekol20</dc:creator>
      <dc:date>2024-09-19T13:22:10Z</dc:date>
    </item>
  </channel>
</rss>

