<?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: General Protection Fault inserting ring items in table cell in LabWindows/CVI</title>
    <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3601052#M75673</link>
    <description>&lt;P&gt;Thanks for your help! &amp;nbsp;I was staring at this so long, I missed that index.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a shame that&amp;nbsp;SetTableCellRingItemAttribute doesn't throw an error for out-of-index values. &amp;nbsp;Oh well.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Mar 2017 16:27:03 GMT</pubDate>
    <dc:creator>ElectroLund</dc:creator>
    <dc:date>2017-03-22T16:27:03Z</dc:date>
    <item>
      <title>General Protection Fault inserting ring items in table cell</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600342#M75667</link>
      <description>&lt;P&gt;I'm seeing GPFs in RunUserInterface when inserting ring items in a column cells of a table control. &amp;nbsp;It's repeatable &lt;STRONG&gt;&lt;EM&gt;now&lt;/EM&gt;&lt;/STRONG&gt;, although yesterday in development I'm pretty certain this was not happening. &amp;nbsp;Lovely, I know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've stripped my project down to bare bones. &amp;nbsp;Click the Add button to add rows. &amp;nbsp;Click the Fail or Pass ring controls in any row and watch the GPF fireworks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What am I missing here?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 16:31:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600342#M75667</guid>
      <dc:creator>ElectroLund</dc:creator>
      <dc:date>2017-03-21T16:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: General Protection Fault inserting ring items in table cell</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600716#M75668</link>
      <description>&lt;P&gt;Hello Electro,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems indeed a but - CAR #637529 created.&lt;/P&gt;
&lt;P&gt;The culprit is SetTableCellRingItemAttribute(embolden!) which breaks the internal state of the ring. Also setting other attributes with SetTableCellRingItemAttribute produce the failure.&lt;/P&gt;
&lt;P&gt;The only workaround is to give up to embolden, sorry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Constantin=&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 09:01:06 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600716#M75668</guid>
      <dc:creator>Constantin--P</dc:creator>
      <dc:date>2017-03-22T09:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: General Protection Fault inserting ring items in table cell</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600902#M75672</link>
      <description>&lt;P&gt;After some more investigation I saw that&amp;nbsp;&lt;A href="http://zone.ni.com/reference/en-XX/help/370051V-01/cvi/uiref/cvisettablecellringitemattribute/" target="_self"&gt;SetTableCellRingItemAttribute&lt;/A&gt; is called with a wrong parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// embolden!&lt;BR /&gt;SetTableCellRingItemAttribute(panel, &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;control,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;MakePoint(column,row),&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;-1,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ATTR_BOLD,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;TRUE);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;The 4th parameter, index has invalid value&lt;/P&gt;
&lt;TABLE class="Borderless"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="paramName"&gt;index&lt;/TD&gt;
&lt;TD class="paramDataType"&gt;int&lt;/TD&gt;
&lt;TD&gt;The zero-based index specifying the ring item.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So actually it's not a CVI bug&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 13:59:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3600902#M75672</guid>
      <dc:creator>Constantin--P</dc:creator>
      <dc:date>2017-03-22T13:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: General Protection Fault inserting ring items in table cell</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3601052#M75673</link>
      <description>&lt;P&gt;Thanks for your help! &amp;nbsp;I was staring at this so long, I missed that index.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a shame that&amp;nbsp;SetTableCellRingItemAttribute doesn't throw an error for out-of-index values. &amp;nbsp;Oh well.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 16:27:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3601052#M75673</guid>
      <dc:creator>ElectroLund</dc:creator>
      <dc:date>2017-03-22T16:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: General Protection Fault inserting ring items in table cell</title>
      <link>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3601484#M75678</link>
      <description>&lt;P&gt;Yes, we'll keep around CAR #637529 with the purpose to throw a run-time error in case of invalid value of index parameter but it will have a lower priority&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 07:20:14 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabWindows-CVI/General-Protection-Fault-inserting-ring-items-in-table-cell/m-p/3601484#M75678</guid>
      <dc:creator>Constantin--P</dc:creator>
      <dc:date>2017-03-23T07:20:14Z</dc:date>
    </item>
  </channel>
</rss>

