<?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: VBA Example in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458708#M389905</link>
    <description>&lt;P&gt;Has Anyone has tried this code to Run&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jan 2015 14:47:42 GMT</pubDate>
    <dc:creator>ravikmb5</dc:creator>
    <dc:date>2015-01-05T14:47:42Z</dc:date>
    <item>
      <title>VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458030#M389904</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Control point, equation, and intersection curve creation. API Sample&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am getting&amp;nbsp; Error&lt;/P&gt;&lt;P&gt;while using the sample API code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Public Sub SketchCurves()&lt;BR /&gt;' Create a new part.&lt;BR /&gt;Dim partDoc As PartDocument&lt;BR /&gt;Set partDoc = ThisApplication.Documents.Add(kPartDocumentObject, _&lt;BR /&gt;ThisApplication.FileManager.GetTemplateFile(kPartDocumentObject))&lt;BR /&gt;Dim partDef As PartComponentDefinition&lt;BR /&gt;Set partDef = partDoc.ComponentDefinition&lt;BR /&gt;&lt;BR /&gt;' Create a 2D sketch on the X-Y plane.&lt;BR /&gt;Dim sketch1 As PlanarSketch&lt;BR /&gt;Set sketch1 = partDef.Sketches.Add(partDef.WorkPlanes.Item(3))&lt;BR /&gt;&lt;BR /&gt;Dim tg As TransientGeometry&lt;BR /&gt;Set tg = ThisApplication.TransientGeometry&lt;BR /&gt;&lt;BR /&gt;' Create a spline based on control points.&lt;BR /&gt;Dim pnts As ObjectCollection&lt;BR /&gt;Set pnts = ThisApplication.TransientObjects.CreateObjectCollection&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(2, 0))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(4, 1))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(4, 2))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(6, 3))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(8, 1))&lt;BR /&gt;Dim controlPointSpline As SketchControlPointSpline&lt;BR /&gt;Set controlPointSpline = sketch1.SketchControlPointSplines.Add(pnts)&lt;BR /&gt;&lt;BR /&gt;' Create a 2D sketch on the Y-Z plane.&lt;BR /&gt;Dim sketch2 As PlanarSketch&lt;BR /&gt;Set sketch2 = partDef.Sketches.Add(partDef.WorkPlanes.Item(1))&lt;BR /&gt;&lt;BR /&gt;' Create a spline based on an equation.&lt;BR /&gt;Dim equationCurve As SketchEquationCurve&lt;BR /&gt;Set equationCurve = sketch2.SketchEquationCurves.Add(kParametric, kCartesian, _&lt;BR /&gt;".001*t * cos(t)", ".001*t * sin(t)", 0, 360 * 3)&lt;BR /&gt;&lt;BR /&gt;' Create a 3D sketch.&lt;BR /&gt;Dim sketch3 As sketch3D&lt;BR /&gt;Set sketch3 = partDef.Sketches3D.Add&lt;BR /&gt;&lt;BR /&gt;' Create a 3D spline based on control points.&lt;BR /&gt;Set pnts = ThisApplication.TransientObjects.CreateObjectCollection&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(10, 0, 0))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(12, 1, 3))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(12, 2, -5))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(14, 3, 2))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(16, 1, -3))&lt;BR /&gt;Dim controlPointSpline2 As SketchControlPointSpline3D&lt;BR /&gt;Set controlPointSpline2 = sketch3.SketchControlPointSplines3D.Add(pnts)&lt;BR /&gt;&lt;BR /&gt;' Create a 3D spline based on an equation.&lt;BR /&gt;Dim equationCurve2 As SketchEquationCurve3D&lt;BR /&gt;Set equationCurve2 = sketch3.SketchEquationCurves3D.Add(kCartesian, _&lt;BR /&gt;".001*t * cos(t) + 8", ".001*t * sin(t)", "0.002*t", 0, 360 * 3)&lt;BR /&gt;&lt;BR /&gt;ThisApplication.ActiveView.Fit&lt;BR /&gt;&lt;BR /&gt;' Extrude the 2d curves.&lt;BR /&gt;Dim prof As Profile&lt;BR /&gt;Set prof = sketch1.Profiles.AddForSurface(controlPointSpline)&lt;BR /&gt;Dim extrudeDef As ExtrudeDefinition&lt;BR /&gt;Set extrudeDef = partDef.Features.ExtrudeFeatures.CreateExtrudeDefinition(prof, kSurfaceOperation)&lt;BR /&gt;Call extrudeDef.SetDistanceExtent(6, kSymmetricExtentDirection)&lt;BR /&gt;Dim extrude1 As ExtrudeFeature&lt;BR /&gt;Set extrude1 = partDef.Features.ExtrudeFeatures.Add(extrudeDef)&lt;BR /&gt;&lt;BR /&gt;' Change the work surface to not be transparent.&lt;BR /&gt;Dim surf As WorkSurface&lt;BR /&gt;Set surf = extrude1.SurfaceBodies.Item(1).Parent&lt;BR /&gt;surf.Translucent = False&lt;BR /&gt;&lt;BR /&gt;Set prof = sketch2.Profiles.AddForSurface(equationCurve)&lt;BR /&gt;Set extrudeDef = partDef.Features.ExtrudeFeatures.CreateExtrudeDefinition(prof, kSurfaceOperation)&lt;BR /&gt;Call extrudeDef.SetDistanceExtent(9, kPositiveExtentDirection)&lt;BR /&gt;Dim extrude2 As ExtrudeFeature&lt;BR /&gt;Set extrude2 = partDef.Features.ExtrudeFeatures.Add(extrudeDef)&lt;BR /&gt;&lt;BR /&gt;' Create a new sketch and an intersection curve.&lt;BR /&gt;Dim interSketch As sketch3D&lt;BR /&gt;Set interSketch = partDef.Sketches3D.Add&lt;BR /&gt;&lt;BR /&gt;Call interSketch.IntersectionCurves.Add(extrude1.SurfaceBodies.Item(1), extrude2.SurfaceBodies.Item(1))&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jan 2015 16:29:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458030#M389904</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-04T16:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458708#M389905</link>
      <description>&lt;P&gt;Has Anyone has tried this code to Run&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2015 14:47:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458708#M389905</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-05T14:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458799#M389906</link>
      <description>&lt;P&gt;You might get faster response over here&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/inventor-customization/bd-p/120" target="_blank"&gt;http://forums.autodesk.com/t5/inventor-customization/bd-p/120&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;many people are on Holiday till next week.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2015 15:33:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5458799#M389906</guid>
      <dc:creator>JDMather</dc:creator>
      <dc:date>2015-01-05T15:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5462944#M389907</link>
      <description>&lt;P&gt;I just tried running the sample code and it's running without any problems.&amp;nbsp; I'm using Inventor 2015 but would expect it to run in Inventor 2014 too.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 17:54:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5462944#M389907</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-01-08T17:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5462998#M389908</link>
      <description>&lt;P&gt;These are the Errors&lt;/P&gt;&lt;P&gt;When i Use Sample Code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG border="0" src="https://forums.autodesk.com/t5/image/serverpage/image-id/148208i58524D2828DDF8A5/image-size/original?v=mpbl-1&amp;amp;px=-1" title="SketchEquation Curve1.png" alt="SketchEquation Curve1.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i Click on Debug&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it HighLights Sketch Curves&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG border="0" src="https://forums.autodesk.com/t5/image/serverpage/image-id/148209i8632124D54FB8EC8/image-size/original?v=mpbl-1&amp;amp;px=-1" title="SketchEquation Curve.png" alt="SketchEquation Curve.png" /&gt;&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;</description>
      <pubDate>Thu, 08 Jan 2015 18:23:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5462998#M389908</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-08T18:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463003#M389909</link>
      <description>&lt;P&gt;i am Using Inventor 2015 &amp;amp; x64 bit Machine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your Response&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 18:25:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463003#M389909</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-08T18:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463024#M389910</link>
      <description>&lt;P&gt;Strange.&amp;nbsp; I'm also using Inventor 2015 on a 64-bit machine.&amp;nbsp; I noticed in your picture that there's not any indentation in your code.&amp;nbsp; When I copy and paste the sample I get all of the indentation.&amp;nbsp;&amp;nbsp;The indentation&amp;nbsp;shouldn't matter but it makes me wonder if something else is different in your code than the original sample.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 18:33:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463024#M389910</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-01-08T18:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463092#M389911</link>
      <description>&lt;P&gt;Here is an Video&lt;/P&gt;&lt;P&gt;Which is Showing Errors&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;</description>
      <pubDate>Thu, 08 Jan 2015 19:15:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463092#M389911</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-08T19:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463322#M389912</link>
      <description>&lt;P&gt;Very strange.&amp;nbsp; I did the exact same thing but it runs fine.&amp;nbsp; Can some others seeing this please try running the "Control point, equation, and interaction curve creation" sample and see if it works for you?&amp;nbsp; It's available in the programming help as shown below.&amp;nbsp; I can't think of any reason why it would work on one computer and not another.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/148262i2A772E1610387F8C/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="CurveSample.png" title="CurveSample.png" /&gt;&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;</description>
      <pubDate>Thu, 08 Jan 2015 22:30:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463322#M389912</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-01-08T22:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463560#M389913</link>
      <description>&lt;P&gt;Figured it out&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim partDoc As PartDocument&lt;BR /&gt;Set partDoc = ThisApplication.Documents.Add(kPartDocumentObject, _&lt;BR /&gt;ThisApplication.FileManager.GetTemplateFile(kPartDocumentObject))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;was set o default mm units&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if i change my default template to inches it works&lt;/P&gt;&lt;P&gt;or if ichange units directly in code&amp;nbsp;&lt;/P&gt;&lt;P&gt;it works&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The below code Works if it is Default mm Units&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;Public Sub SketchCurves()&lt;BR /&gt;' Create a new part.&lt;BR /&gt;Dim partDoc As PartDocument&lt;BR /&gt;Set partDoc = ThisApplication.Documents.Add(kPartDocumentObject, _&lt;BR /&gt;ThisApplication.FileManager.GetTemplateFile(kPartDocumentObject))&lt;BR /&gt;Dim partDef As PartComponentDefinition&lt;BR /&gt;Set partDef = partDoc.ComponentDefinition&lt;BR /&gt;&lt;BR /&gt;' Create a 2D sketch on the X-Y plane.&lt;BR /&gt;Dim sketch1 As PlanarSketch&lt;BR /&gt;Set sketch1 = partDef.Sketches.Add(partDef.WorkPlanes.Item(3))&lt;BR /&gt;&lt;BR /&gt;Dim tg As TransientGeometry&lt;BR /&gt;Set tg = ThisApplication.TransientGeometry&lt;BR /&gt;&lt;BR /&gt;' Create a spline based on control points.&lt;BR /&gt;Dim pnts As ObjectCollection&lt;BR /&gt;Set pnts = ThisApplication.TransientObjects.CreateObjectCollection&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(0.2, 0))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(0.4, 0.1))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(0.4, 0.2))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(0.6, 0.3))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint2d(0.8, 0.1))&lt;BR /&gt;Dim controlPointSpline As SketchControlPointSpline&lt;BR /&gt;Set controlPointSpline = sketch1.SketchControlPointSplines.Add(pnts)&lt;BR /&gt;&lt;BR /&gt;' Create a 2D sketch on the Y-Z plane.&lt;BR /&gt;Dim sketch2 As PlanarSketch&lt;BR /&gt;Set sketch2 = partDef.Sketches.Add(partDef.WorkPlanes.Item(1))&lt;BR /&gt;&lt;BR /&gt;' Create a spline based on an equation.&lt;BR /&gt;Dim equationCurve As SketchEquationCurve&lt;BR /&gt;Set equationCurve = sketch2.SketchEquationCurves.Add(kParametric, kCartesian, _&lt;BR /&gt;"1 mm* 0.0254 ul * t * cos(1 deg * t)", "1 mm * 0.0254 ul * t * sin(1 deg * t)", 0, "360 ul * 3 ul")&lt;BR /&gt;&lt;BR /&gt;' Set equationCurve = sketch2.SketchEquationCurve&lt;BR /&gt;&lt;BR /&gt;' Create a 3D sketch.&lt;BR /&gt;Dim sketch3 As Sketch3D&lt;BR /&gt;Set sketch3 = partDef.Sketches3D.Add&lt;BR /&gt;&lt;BR /&gt;' Create a 3D spline based on control points.&lt;BR /&gt;Set pnts = ThisApplication.TransientObjects.CreateObjectCollection&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(0.1, 0, 0))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(0.12, 0.1, 0.3))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(0.12, 0.2, -0.5))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(0.14, 0.3, 0.2))&lt;BR /&gt;Call pnts.Add(tg.CreatePoint(0.16, 0.1, -0.3))&lt;BR /&gt;Dim controlPointSpline2 As SketchControlPointSpline3D&lt;BR /&gt;Set controlPointSpline2 = sketch3.SketchControlPointSplines3D.Add(pnts)&lt;BR /&gt;&lt;BR /&gt;' Create a 3D spline based on an equation.&lt;BR /&gt;Dim equationCurve2 As SketchEquationCurve3D&lt;BR /&gt;Set equationCurve2 = sketch3.SketchEquationCurves3D.Add(kCartesian, _&lt;BR /&gt;"1 mm * 0.0254 ul * t * cos(1 deg * t) + 1 mm * 8 ul", "1 mm * 0.0254 ul * t * sin(1 deg * t)", " 1mm * 0.0508 * t", 0, "360 * 3")&lt;BR /&gt;&lt;BR /&gt;ThisApplication.ActiveView.Fit&lt;BR /&gt;&lt;BR /&gt;' Extrude the 2d curves.&lt;BR /&gt;Dim prof As Profile&lt;BR /&gt;Set prof = sketch1.Profiles.AddForSurface(controlPointSpline)&lt;BR /&gt;Dim extrudeDef As ExtrudeDefinition&lt;BR /&gt;Set extrudeDef = partDef.Features.ExtrudeFeatures.CreateExtrudeDefinition(prof, kSurfaceOperation)&lt;BR /&gt;Call extrudeDef.SetDistanceExtent(0.6, kSymmetricExtentDirection)&lt;BR /&gt;Dim extrude1 As ExtrudeFeature&lt;BR /&gt;Set extrude1 = partDef.Features.ExtrudeFeatures.Add(extrudeDef)&lt;BR /&gt;&lt;BR /&gt;' Change the work surface to not be transparent.&lt;BR /&gt;Dim surf(0 To 2) As WorkSurface&lt;BR /&gt;Set surf1 = extrude1.SurfaceBodies.Item(1).Parent&lt;BR /&gt;surf1.Translucent = True&lt;BR /&gt;&lt;BR /&gt;Set prof = sketch2.Profiles.AddForSurface(equationCurve)&lt;BR /&gt;Set extrudeDef = partDef.Features.ExtrudeFeatures.CreateExtrudeDefinition(prof, kSurfaceOperation)&lt;BR /&gt;Call extrudeDef.SetDistanceExtent(0.9, kPositiveExtentDirection)&lt;BR /&gt;Dim extrude2 As ExtrudeFeature&lt;BR /&gt;Set extrude2 = partDef.Features.ExtrudeFeatures.Add(extrudeDef)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Set surf2 = extrude2.SurfaceBodies.Item(1).Parent&lt;BR /&gt;surf2.Translucent = True&lt;BR /&gt;&lt;BR /&gt;' Create a new sketch and an intersection curve.&lt;BR /&gt;Dim interSketch As Sketch3D&lt;BR /&gt;Set interSketch = partDef.Sketches3D.Add&lt;BR /&gt;&lt;BR /&gt;Call interSketch.IntersectionCurves.Add(extrude1.SurfaceBodies.Item(1), extrude2.SurfaceBodies.Item(1))&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG border="0" src="https://forums.autodesk.com/t5/image/serverpage/image-id/148283i1F264DA7DB98FC37/image-size/original?v=mpbl-1&amp;amp;px=-1" title="Sketch Curves.png" alt="Sketch Curves.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks brain&lt;/P&gt;&lt;P&gt;Thanks For Your Quick Response&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Suggestion to Autodesk&lt;/P&gt;&lt;P&gt;They Should mention in each programme on what units this example is built in&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 05:38:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463560#M389913</guid>
      <dc:creator>ravikmb5</dc:creator>
      <dc:date>2015-01-09T05:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Example</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463573#M389914</link>
      <description>&lt;P&gt;I'm glad you figured it out.&amp;nbsp; It's usually simple once you know the answer.&amp;nbsp; Checking to see if a sample is unit dependent is&amp;nbsp;something we need to keep in mind.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 06:05:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/vba-example/m-p/5463573#M389914</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-01-09T06:05:45Z</dc:date>
    </item>
  </channel>
</rss>

