<?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: Problem with container object in QV10 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251970#M95539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this macro syntax from somewhere else in the community, and it works fine as a macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my question is how can you cause this macro to run, whenever I choose a different container tab, so I can grab it's index ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yigal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Sep 2012 13:14:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-09-04T13:14:07Z</dc:date>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251963#M95532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to change active object in the container by using macro.&lt;BR /&gt;There are four charts in the container object viz.,Yearly,Half-Yearly,Quarterly,Monthly.&lt;/P&gt;&lt;P&gt;Time Format,selection list box contains Yearly,Half-Yearly,Quarterly,Monthly as possible values.&lt;BR /&gt;depending upon selection in the list box, active object of the container should change.&lt;/P&gt;&lt;P&gt;I've gone through the APIGuide app for the same and found the below code:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Set ContainerObj = ActiveDocument.GetSheetObject("CT01")&lt;BR /&gt; set ContProp=ContainerObj.GetProperties &lt;BR /&gt; ActiveObject=ContProp.SingleObjectActiveIndex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveObject is giving the index of currently active object in the container.&lt;BR /&gt;I can also assign value to this property Like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ContProp.SingleObjectActiveIndex=0 i.e. 1st object should get active.&lt;/P&gt;&lt;P&gt;but this script does not server the purpose.&lt;/P&gt;&lt;P&gt;need urgent help on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2011 13:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251963#M95532</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-05-30T13:03:00Z</dc:date>
    </item>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251964#M95533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should work, but once you have made changes to the properties, you need to called the SetProperties function to apply them to the object:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;Set ContainerObj = ActiveDocument.GetSheetObject("CT01")&lt;BR /&gt;set ContProp=ContainerObj.GetProperties &lt;BR /&gt;ActiveObject=ContProp.SingleObjectActiveIndex&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;ContainerObj.SetProperties ContProp&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 09:37:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251964#M95533</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2011-06-01T09:37:55Z</dc:date>
    </item>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251965#M95534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should be something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code" style="font-size: 1.2em;"&gt;Set ContainerObj = ActiveDocument.GetSheetObject("CT01")&lt;BR /&gt;set ContProp=ContainerObj.GetProperties &lt;BR /&gt;ContProp.SingleObjectActiveIndex = vNewTab&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code" style="font-size: 1.2em;"&gt;ContainerObj.SetProperties ContProp&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SingleObjectActiveIndex is a zero based index of the tabs in the container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 09:39:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251965#M95534</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2011-06-01T09:39:53Z</dc:date>
    </item>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251966#M95535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; thanks &lt;SPAN class="replyToName"&gt;stephen,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;i's missing to call SetProperties at last on Container object.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="replyToName"&gt;Now my problem is solved. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 11:20:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251966#M95535</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-06-04T11:20:37Z</dc:date>
    </item>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251967#M95536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi you all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to do something similar... but it looks like my Qlikview version (10.00.8815.6 SR1) does not support the SingleObjectActiveIndex property. I just copied Stephen Redmond's code, which looks perfect, but it gets stuck at that line, saying that object does not support this property or method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I doing anything wrong or it's just about my version? Which version do you guys use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 08:01:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251967#M95536</guid>
      <dc:creator>ramonarcusa36</dc:creator>
      <dc:date>2011-07-28T08:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251968#M95537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes , qlikview version might be the problem.&lt;/P&gt;&lt;P&gt;I'm using QV10 SR2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm also not sure Whether QV10 SR1 supports this property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 09:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251968#M95537</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-07-29T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251969#M95538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I couldn't get this macro to work in QV 10 ... now I'm on QV 11. I'm not sure what's wrong. Could you post a small QV 11 app with your macro? Thanks. I would greatly appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 22:46:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251969#M95538</guid>
      <dc:creator />
      <dc:date>2012-01-10T22:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251970#M95539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this macro syntax from somewhere else in the community, and it works fine as a macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my question is how can you cause this macro to run, whenever I choose a different container tab, so I can grab it's index ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yigal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2012 13:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251970#M95539</guid>
      <dc:creator />
      <dc:date>2012-09-04T13:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251971#M95540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to sheet properties -&amp;gt; Triggers(Tab) -&amp;gt; Sheet Object Event Triggers -&amp;gt; Select ObjectID of container object -&amp;gt; and run the macro u have on "On Activate" Event of the selected container object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spartan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 03:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251971#M95540</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2012-09-05T03:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251972#M95541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is almost the correct answer... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works whenever the container object is activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what I need is to let the macro run, every time I &lt;STRONG style="text-decoration: underline;"&gt;press a different tab&lt;/STRONG&gt; in the container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, thanks for the prompt response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yigal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 14:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251972#M95541</guid>
      <dc:creator />
      <dc:date>2012-09-05T14:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251973#M95542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also had the same requirement ..&lt;/P&gt;&lt;P&gt;I did lot r&amp;amp;d, but did not found any property which gives me currently "&lt;STRONG&gt;clicked&lt;/STRONG&gt;" tab of the container object..&lt;/P&gt;&lt;P&gt;hence settled down with above approach...&lt;/P&gt;&lt;P&gt;but it fulfils my requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u get any workaround.. pls let me know..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sparten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 18:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251973#M95542</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2012-09-05T18:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251974#M95543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, I'll let you know/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Listen, I tried to "cheat" QV: &lt;/P&gt;&lt;P&gt;I removed one of the objects (say ListBox) from the container, and placed it in the same tab sheet the container is. Then I chose settings-&amp;gt;sheet properties-&amp;gt;objects-&amp;gt;selected the List Box outside the container. There I noticed that this object inherited the trigger that I already assigned to the container. In the end, I returned this LB to the container - but still it does'nt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe they will fix it in one of the next SRs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to find a way to report this bug to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yigal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 06:30:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251974#M95543</guid>
      <dc:creator />
      <dc:date>2012-09-06T06:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251975#M95544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;sheet properties -&amp;gt; Triggers(Tab) -&amp;gt; Sheet Object Event Triggers&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Where is that? I only have Sheet Event Triggers&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251975#M95544</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-09-27T12:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251976#M95545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In QV11 - select a sheet which contains a container object, then sheet-&amp;gt;properties-&amp;gt;objects(select the container object)-&amp;gt;triggers...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still the trigger works only when the container is activated, not when you select a tab in the container.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 13:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251976#M95545</guid>
      <dc:creator />
      <dc:date>2012-09-27T13:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251977#M95546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I still only see sheet triggers, not object...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="22642" class="jive-image-thumbnail jive-image" onclick="" alt="2012-09-28_0950.png" src="https://community.qlik.com/legacyfs/online/22642_2012-09-28_0950.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="22643" class="jive-image" alt="2012-09-28_0950_001.png" src="https://community.qlik.com/legacyfs/online/22643_2012-09-28_0950_001.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 06:55:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251977#M95546</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-09-28T06:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251978#M95547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, although u can select an object, the trigger stil belongs to the sheet. Thats the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yigal Douchan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 15:01:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251978#M95547</guid>
      <dc:creator />
      <dc:date>2012-09-28T15:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with container object in QV10</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251979#M95548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try moving to QV SR2, which has just been released.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 12:57:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-container-object-in-QV10/m-p/251979#M95548</guid>
      <dc:creator />
      <dc:date>2012-11-05T12:57:37Z</dc:date>
    </item>
  </channel>
</rss>

