<?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: A way to change object IDs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420994#M699525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the object ID's as far as I know. Below are two examples from the API Guide document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Change unique ID of list box **&lt;/P&gt;&lt;P&gt;set LB = ActiveDocument.GetSheetObject("LB06")&lt;/P&gt;&lt;P&gt;set boxprop=LB.GetProperties&lt;/P&gt;&lt;P&gt;boxprop.Layout.Frame.ObjectId = "Listbox6"&lt;/P&gt;&lt;P&gt;LB.SetProperties boxprop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Change unique ID of a chart **&lt;/P&gt;&lt;P&gt;set g = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;set gp = g.GetProperties&lt;/P&gt;&lt;P&gt;gp.GraphLayout.Frame.ObjectId = "MyChart"&lt;/P&gt;&lt;P&gt;g.SetProperties gp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Dec 2012 12:05:40 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2012-12-10T12:05:40Z</dc:date>
    <item>
      <title>A way to change object IDs</title>
      <link>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420993#M699524</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'm looking for a way to change objects IDs in a sheet.&lt;/P&gt;&lt;P&gt;Is there a way to do that with some automation ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried macro, but it seems that this property is read-only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your attention.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2012 11:50:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420993#M699524</guid>
      <dc:creator />
      <dc:date>2012-12-10T11:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: A way to change object IDs</title>
      <link>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420994#M699525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the object ID's as far as I know. Below are two examples from the API Guide document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Change unique ID of list box **&lt;/P&gt;&lt;P&gt;set LB = ActiveDocument.GetSheetObject("LB06")&lt;/P&gt;&lt;P&gt;set boxprop=LB.GetProperties&lt;/P&gt;&lt;P&gt;boxprop.Layout.Frame.ObjectId = "Listbox6"&lt;/P&gt;&lt;P&gt;LB.SetProperties boxprop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Change unique ID of a chart **&lt;/P&gt;&lt;P&gt;set g = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;set gp = g.GetProperties&lt;/P&gt;&lt;P&gt;gp.GraphLayout.Frame.ObjectId = "MyChart"&lt;/P&gt;&lt;P&gt;g.SetProperties gp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2012 12:05:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420994#M699525</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-12-10T12:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: A way to change object IDs</title>
      <link>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420995#M699526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot !&lt;/P&gt;&lt;P&gt;I need to dig more in "frame" direction... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2012 14:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/420995#M699526</guid>
      <dc:creator />
      <dc:date>2012-12-10T14:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: A way to change object IDs</title>
      <link>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/1920052#M1218517</link>
      <description>&lt;P&gt;Gysbert&lt;/P&gt;
&lt;P&gt;I was hunting for a way to change the object id for grids so when they are exported to Excel you place the name of the grid instead of something like "CH263".&lt;/P&gt;
&lt;P&gt;Now I was reading your post from 2012 a couple of times over, especially the code above.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My question is, the code above you place this in the script where reloading of all your tables are done, correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 16:53:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/A-way-to-change-object-IDs/m-p/1920052#M1218517</guid>
      <dc:creator>tim_at_ford</dc:creator>
      <dc:date>2022-04-19T16:53:58Z</dc:date>
    </item>
  </channel>
</rss>

