<?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>Inventor 产品技术应用 - 中文论坛中的主题 回复： SetPromptResultText（）</title>
    <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525942#M8146</link>
    <description>&lt;P&gt;你好&lt;/P&gt;&lt;P&gt;&amp;nbsp;我是新接触二次开发，就是简单建立了个零件和工程图，然后来测试这个函数，最后都出现这个问题。代码都是从这个论坛上或得的&lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2017 04:59:00 GMT</pubDate>
    <dc:creator>zhikaobi1725</dc:creator>
    <dc:date>2017-11-08T04:59:00Z</dc:date>
    <item>
      <title>SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7510243#M8137</link>
      <description>&lt;P&gt;&amp;nbsp;SetPromptResultText（） 函数调用失败&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;run_time error ‘5’&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;invalid procedure call or argument&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 05:20:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7510243#M8137</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-02T05:20:04Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7514402#M8138</link>
      <description>&lt;P&gt;能否提供更详细的code，单纯一条代码难说明问题。&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 09:40:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7514402#M8138</guid>
      <dc:creator>Steven_Gao</dc:creator>
      <dc:date>2017-11-03T09:40:59Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7518764#M8139</link>
      <description>&lt;P&gt;Sub ChangeSymbolPromptTextValue()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim doc As DrawingDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set doc = ThisDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSheet As Sheet&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSheet = thisapplication.ActiveDocument.ActiveSheet&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim sketchSym As SketchedSymbol&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set sketchSym = oSheet.SketchedSymbols(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim tBox As TextBox&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim tboxtext As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set tBox = sketchSym.Definition.Sketch.TextBoxes(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tboxtext = sketchSym.GetResultText(tBox)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox (tboxtext)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox (Chr(176))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call sketchSym.SetPromptResultText(tBox, Chr(176))&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;如上面的代码： 我在本论坛上找了好多关于此函数的代码 ，均提示上面的错误&lt;/P&gt;&lt;P&gt;我的inventor 版本是Autodesk Inventor Professional 2015。&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 00:41:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7518764#M8139</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-06T00:41:59Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7522589#M8140</link>
      <description>&lt;P&gt;请尝试如下的VBA代码样本，你可以在此基础上进行编辑。&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub MofidyPromptedEntry()
  Dim oSS As SketchedSymbol
  Set oSS = ThisApplication.ActiveDocument.SelectSet(1)
  
  Dim oTB As TextBox
  For Each oTB In oSS.Definition.Sketch.TextBoxes
    If oTB.Text = "&amp;lt;MyPrompt&amp;gt;" Then
      Call oSS.SetPromptResultText(oTB, "NewValue")
    End If
  Next
End Sub&lt;/PRE&gt;
&lt;P&gt;当然，如果你使用iLogic的话，也可以使用以下的代码样本。&lt;/P&gt;
&lt;PRE&gt;' Set the value for the first sketched symbol
' on the current sheet
Dim oSS As SketchedSymbol
oSS = ActiveSheet.Sheet.SketchedSymbols(1)

Dim oTB As TextBox
For Each oTB In oSS.Definition.Sketch.TextBoxes
  If oTB.Text = "&amp;lt;MyPrompt&amp;gt;" Then
    Call oSS.SetPromptResultText(oTB, "NewValue")
  End If
Next&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 05:30:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7522589#M8140</guid>
      <dc:creator>Xun.Zhang</dc:creator>
      <dc:date>2017-11-07T05:30:52Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7522630#M8141</link>
      <description>&lt;P&gt;多谢 提供代码： 但仍是不行：如下面附件 我自己建立的符号“ mytest ”想实现参数化改成”mychange“， 调用SetPromptResultText(oTB, "mychange")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;但提示调用失败（引用下面的代码）&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sub MofidyPromptedEntry()&lt;BR /&gt;Dim oSS As SketchedSymbol&lt;BR /&gt;Set oSS = ThisApplication.ActiveDocument.SelectSet(1)&lt;BR /&gt;Dim oTB As TextBox&lt;BR /&gt;For Each oTB In oSS.Definition.Sketch.TextBoxes&lt;BR /&gt;If oTB.Text = "mytest" Then&lt;BR /&gt;Call oSS.SetPromptResultText(oTB, "mychange")&lt;BR /&gt;End If&lt;BR /&gt;Next&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 06:04:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7522630#M8141</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-07T06:04:56Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525797#M8142</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;请问报了什么错误？我这边是好的。&lt;/P&gt;
&lt;P&gt;有video记录下来问题就更好了。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 02:20:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525797#M8142</guid>
      <dc:creator>Xun.Zhang</dc:creator>
      <dc:date>2017-11-08T02:20:26Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525807#M8143</link>
      <description>&lt;P&gt;谢谢关注：&lt;/P&gt;&lt;P&gt;其他运行正常 调用此函数时 出现附件的提示：&lt;/P&gt;&lt;P&gt;我们单位计算机，我们权限有一定的限制， 无法自行安装软件，C盘下的程序文件夹下无写入权限， 注册表无写入权限，&lt;/P&gt;&lt;P&gt;不知道是否和此有关。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 02:33:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525807#M8143</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T02:33:37Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525811#M8144</link>
      <description>&lt;P&gt;调用此函数目的想实现形位公差参数化，inventor&amp;nbsp; 有其他方法实现形位公差参数化（企业自己的标准 ） 请指教&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 02:37:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525811#M8144</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T02:37:33Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525843#M8145</link>
      <description>&lt;P&gt;能把你的文件传上来吗？我们可以仔细看看问题的所在。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 03:08:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525843#M8145</guid>
      <dc:creator>Xun.Zhang</dc:creator>
      <dc:date>2017-11-08T03:08:43Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525942#M8146</link>
      <description>&lt;P&gt;你好&lt;/P&gt;&lt;P&gt;&amp;nbsp;我是新接触二次开发，就是简单建立了个零件和工程图，然后来测试这个函数，最后都出现这个问题。代码都是从这个论坛上或得的&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 04:59:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525942#M8146</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T04:59:00Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525944#M8147</link>
      <description>&lt;P&gt;零件图&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 05:00:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525944#M8147</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T05:00:01Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525984#M8148</link>
      <description>&lt;P&gt;你的工程图中的SketchedSymbol的定义里面没有设置TextBox的类型为Prompted Entry，所以你无法通过SetPromptResultText方法来修改其显示的文字，你可以按照下面的所示修改：&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. 编辑matest。&lt;/P&gt;
&lt;P&gt;2. 编辑mytest的TextBox.&lt;/P&gt;
&lt;P&gt;3. 在图示箭头所指的下拉菜单中选择Prompted Entry。然后保存所有的改动，测试VBA代码。&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PromptedText.png" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/423175i74F477C9D7F0EDB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="PromptedText.png" alt="PromptedText.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 05:37:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7525984#M8148</guid>
      <dc:creator>YuhanZhang</dc:creator>
      <dc:date>2017-11-08T05:37:50Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526008#M8149</link>
      <description>&lt;P&gt;按方法已经解决 多谢，&lt;/P&gt;&lt;P&gt;&amp;nbsp;形位公差参数化，还有其他方法吗？&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 05:55:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526008#M8149</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T05:55:48Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526013#M8150</link>
      <description>&lt;P&gt;你是要标示“形位公差”吗？如果是这样的话可以使用FeatureControlFrame来实现。UI上你可以通过 Feature Control Frame的命令创建：&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FCF.png" style="width: 568px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/423176iD864239FA2A057E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="FCF.png" alt="FCF.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;API也可以用参考下面的VBA示例：&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub AddFeatureControlFrame()
    ' Set a reference to the drawing document.
    ' This assumes a drawing document is active.
    Dim oDrawDoc As DrawingDocument
    Set oDrawDoc = ThisApplication.ActiveDocument

    ' Set a reference to the active sheet.
    Dim oActiveSheet As Sheet
    Set oActiveSheet = oDrawDoc.ActiveSheet

    ' Set a reference to the drawing curve segment.
    ' This assumes that a drwaing curve is selected.
    Dim oDrawingCurveSegment As DrawingCurveSegment
    Set oDrawingCurveSegment = oDrawDoc.SelectSet.Item(1)

    ' Set a reference to the drawing curve.
    Dim oDrawingCurve As DrawingCurve
    Set oDrawingCurve = oDrawingCurveSegment.Parent

    ' Get the mid point of the selected curve
    ' assuming that the selection curve is linear
    Dim oMidPoint As Point2d
    Set oMidPoint = oDrawingCurve.MidPoint

    ' Set a reference to the TransientGeometry object.
    Dim oTG As TransientGeometry
    Set oTG = ThisApplication.TransientGeometry

    Dim oLeaderPoints As ObjectCollection
    Set oLeaderPoints = ThisApplication.TransientObjects.CreateObjectCollection

    ' Create a few leader points.
    Call oLeaderPoints.Add(oTG.CreatePoint2d(oMidPoint.X + 10, oMidPoint.Y + 10))
    Call oLeaderPoints.Add(oTG.CreatePoint2d(oMidPoint.X + 10, oMidPoint.Y + 5))

    ' Create an intent and add to the leader points collection.
    ' This is the geometry that the symbol will attach to.
    Dim oGeometryIntent As GeometryIntent
    Set oGeometryIntent = oActiveSheet.CreateGeometryIntent(oDrawingCurve)
    Call oLeaderPoints.Add(oGeometryIntent)

    ' Create a FeatureControlFrameRows object to define the symbol's rows
    Dim oRows As FeatureControlFrameRows
    Set oRows = oActiveSheet.FeatureControlFrames.CreateFeatureControlFrameRows
    
    ' Add a row
    Dim oRow As FeatureControlFrameRow
    Set oRow = oRows.Add(kProfileOfAnySurface, "0.20", , "A", "B")
    
    ' Create the feature control frame symbol with a leader
    Dim oSymbol As FeatureControlFrame
    Set oSymbol = oActiveSheet.FeatureControlFrames.Add(oLeaderPoints, oRows)
End Sub&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Nov 2017 05:58:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526013#M8150</guid>
      <dc:creator>YuhanZhang</dc:creator>
      <dc:date>2017-11-08T05:58:11Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526034#M8151</link>
      <description>&lt;P&gt;多谢指教， 我用电子表格上的数据来控制形位公差上的数据，形位公差数据根据电子表格上的尺寸变换来后台控制变化， 有没有更简单的方法，象ilogic中电子表格参数表一样来控制。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 06:10:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526034#M8151</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T06:10:05Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526164#M8152</link>
      <description>&lt;P&gt;目前没有一个直接的连接形位公差和Excel表格的功能，不过你可以自己实现，在你的程序里面可以建立一个thread来监视Excel的改动（比如比较TimeStamp），一旦Excel有改动就通过API更新相应的形位公差数据，反之可以通过DocumentEvents.OnChange监听工程图的改动，如果是形位公差数据改动了就更新Excel。&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;希望这个建议能给你带来帮助。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 07:36:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526164#M8152</guid>
      <dc:creator>YuhanZhang</dc:creator>
      <dc:date>2017-11-08T07:36:31Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526182#M8153</link>
      <description>&lt;P&gt;多谢，&lt;/P&gt;&lt;P&gt;用inventor 自带的形位公差标注（非自己建立的符号），能否用API变更，2015版本有相应变更函数吗？&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 07:42:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526182#M8153</guid>
      <dc:creator>zhikaobi1725</dc:creator>
      <dc:date>2017-11-08T07:42:52Z</dc:date>
    </item>
    <item>
      <title>回复： SetPromptResultText（）</title>
      <link>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526559#M8154</link>
      <description>&lt;P&gt;FeatureControlFrame的创建和编辑的API在Inventor 2009里就已经提供了，所以Inventor 2015里可以使用API进行编辑。&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 10:22:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-chan-pin-ji-shu-ying-yong-zhong-wen-lun-tan/setpromptresulttext/m-p/7526559#M8154</guid>
      <dc:creator>YuhanZhang</dc:creator>
      <dc:date>2017-11-08T10:22:46Z</dc:date>
    </item>
  </channel>
</rss>

