<?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: Numbering scheme for revision table in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067599#M153470</link>
    <description>No, not as far as I know.&lt;BR /&gt;
&lt;BR /&gt;
Sanjay-&lt;BR /&gt;
&lt;BR /&gt;
&lt;JOHAN 20d=""&gt; wrote in message news:5721019@discussion.autodesk.com...&lt;BR /&gt;
Ouch!&lt;BR /&gt;
Is there any other setting for that, application options etc?&lt;BR /&gt;
Can I do it via the commandmanager?&lt;BR /&gt;
I just want to change from the numeric to the alpha option not any custom &lt;BR /&gt;
stuff.&lt;/JOHAN&gt;</description>
    <pubDate>Fri, 14 Sep 2007 19:57:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-09-14T19:57:50Z</dc:date>
    <item>
      <title>Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067596#M153467</link>
      <description>Hello,&lt;BR /&gt;
We have used sketched symbols for our revisions in the past, we want to start using the revision table feature in Inventor 2008. I wrote a small script that reads the info from the sketched symbols and writes it to the revision table. &lt;BR /&gt;
How do I control the numbering scheme of the revision table?&lt;BR /&gt;
&lt;BR /&gt;
Code snippet below:&lt;BR /&gt;
&lt;BR /&gt;
Private Sub SkrivRevision(ByVal aLasUtRevision As Variant)&lt;BR /&gt;
    'Debug.Print aLasUtRevision(1, 1, 1)&lt;BR /&gt;
    Dim oApp As Application&lt;BR /&gt;
    Set oApp = ThisApplication&lt;BR /&gt;
    Dim oDrawDoc As DrawingDocument&lt;BR /&gt;
    Set oDrawDoc = oApp.ActiveDocument&lt;BR /&gt;
    Dim oRevTable As RevisionTable&lt;BR /&gt;
    Dim oTG As TransientGeometry&lt;BR /&gt;
    Set oTG = oApp.TransientGeometry&lt;BR /&gt;
    Set oRevTable = oDrawDoc.ActiveSheet.RevisionTables.Add(oTG.CreatePoint2d(10, 10))&lt;BR /&gt;
    Dim i As Integer&lt;BR /&gt;
    For i = 1 To iMaxRevs&lt;BR /&gt;
        'oRevTable.RevisionTableRows.Add&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(1).Text = aLasUtRevision(1, i, 1) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(2).Text = aLasUtRevision(2, i, 1) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(3).Text = aLasUtRevision(3, i, 1) &amp;amp; ""&lt;BR /&gt;
        'Debug.Print sKonvertDate(aLasUtRevision(4, i, 1))&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(4).Text = sKonvertDate(aLasUtRevision(4, i, 1)) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(5).Text = aLasUtRevision(5, i, 1) &amp;amp; ""&lt;BR /&gt;
        If iMaxRevs - i &amp;gt; 0 Then oRevTable.RevisionTableRows.Add&lt;BR /&gt;
    Next&lt;BR /&gt;
End Sub</description>
      <pubDate>Thu, 13 Sep 2007 12:12:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067596#M153467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-13T12:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067597#M153468</link>
      <description>Sorry, control over the numbering scheme is not currently possible via the &lt;BR /&gt;
API.&lt;BR /&gt;
&lt;BR /&gt;
Sanjay-&lt;BR /&gt;
&lt;BR /&gt;
&lt;JOHAN 20d=""&gt; wrote in message news:5719738@discussion.autodesk.com...&lt;BR /&gt;
Hello,&lt;BR /&gt;
We have used sketched symbols for our revisions in the past, we want to &lt;BR /&gt;
start using the revision table feature in Inventor 2008. I wrote a small &lt;BR /&gt;
script that reads the info from the sketched symbols and writes it to the &lt;BR /&gt;
revision table.&lt;BR /&gt;
How do I control the numbering scheme of the revision table?&lt;BR /&gt;
&lt;BR /&gt;
Code snippet below:&lt;BR /&gt;
&lt;BR /&gt;
Private Sub SkrivRevision(ByVal aLasUtRevision As Variant)&lt;BR /&gt;
    'Debug.Print aLasUtRevision(1, 1, 1)&lt;BR /&gt;
    Dim oApp As Application&lt;BR /&gt;
    Set oApp = ThisApplication&lt;BR /&gt;
    Dim oDrawDoc As DrawingDocument&lt;BR /&gt;
    Set oDrawDoc = oApp.ActiveDocument&lt;BR /&gt;
    Dim oRevTable As RevisionTable&lt;BR /&gt;
    Dim oTG As TransientGeometry&lt;BR /&gt;
    Set oTG = oApp.TransientGeometry&lt;BR /&gt;
    Set oRevTable = &lt;BR /&gt;
oDrawDoc.ActiveSheet.RevisionTables.Add(oTG.CreatePoint2d(10, 10))&lt;BR /&gt;
    Dim i As Integer&lt;BR /&gt;
    For i = 1 To iMaxRevs&lt;BR /&gt;
        'oRevTable.RevisionTableRows.Add&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(1).Text = aLasUtRevision(1, i, &lt;BR /&gt;
1) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(2).Text = aLasUtRevision(2, i, &lt;BR /&gt;
1) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(3).Text = aLasUtRevision(3, i, &lt;BR /&gt;
1) &amp;amp; ""&lt;BR /&gt;
        'Debug.Print sKonvertDate(aLasUtRevision(4, i, 1))&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(4).Text = &lt;BR /&gt;
sKonvertDate(aLasUtRevision(4, i, 1)) &amp;amp; ""&lt;BR /&gt;
        oRevTable.RevisionTableRows(i).Item(5).Text = aLasUtRevision(5, i, &lt;BR /&gt;
1) &amp;amp; ""&lt;BR /&gt;
        If iMaxRevs - i &amp;gt; 0 Then oRevTable.RevisionTableRows.Add&lt;BR /&gt;
    Next&lt;BR /&gt;
End Sub&lt;/JOHAN&gt;</description>
      <pubDate>Fri, 14 Sep 2007 00:14:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067597#M153468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-14T00:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067598#M153469</link>
      <description>Ouch!&lt;BR /&gt;
Is there any other setting for that, application options etc?&lt;BR /&gt;
Can I do it via the commandmanager?&lt;BR /&gt;
I just want to change from the numeric to the alpha option not any custom stuff.</description>
      <pubDate>Fri, 14 Sep 2007 06:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067598#M153469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-14T06:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067599#M153470</link>
      <description>No, not as far as I know.&lt;BR /&gt;
&lt;BR /&gt;
Sanjay-&lt;BR /&gt;
&lt;BR /&gt;
&lt;JOHAN 20d=""&gt; wrote in message news:5721019@discussion.autodesk.com...&lt;BR /&gt;
Ouch!&lt;BR /&gt;
Is there any other setting for that, application options etc?&lt;BR /&gt;
Can I do it via the commandmanager?&lt;BR /&gt;
I just want to change from the numeric to the alpha option not any custom &lt;BR /&gt;
stuff.&lt;/JOHAN&gt;</description>
      <pubDate>Fri, 14 Sep 2007 19:57:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067599#M153470</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-14T19:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067600#M153471</link>
      <description>I got some time over and decided to give this a try again.&lt;BR /&gt;
&lt;BR /&gt;
I found that I can use the commandmanager to open the dialog for insert revision table using the following code:&lt;BR /&gt;
&lt;BR /&gt;
    Dim oInsertRevTable As ControlDefinition&lt;BR /&gt;
    Set oInsertRevTable = oApp.CommandManager.ControlDefinitions.Item("DrawingRevisionTableCmd")&lt;BR /&gt;
    oInsertRevTable.Execute&lt;BR /&gt;
&lt;BR /&gt;
Is there a way to pass that I want to use alpha for revision so this command places the revision table without showing the dialogue?&lt;BR /&gt;
If so how do I know what can be passed to a comand (any command)&lt;BR /&gt;
&lt;BR /&gt;
/Johan</description>
      <pubDate>Mon, 07 Jan 2008 16:15:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2067600#M153471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-07T16:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Numbering scheme for revision table</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2712015#M153472</link>
      <description>&lt;P&gt;Any way of doing this now in Inventor 2010?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2010 16:07:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/numbering-scheme-for-revision-table/m-p/2712015#M153472</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-07-08T16:07:38Z</dc:date>
    </item>
  </channel>
</rss>

