<?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 Button Color Change in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144106#M23149</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;Please check the attached application.&lt;/P&gt;&lt;P&gt;i think , that would help you out.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2009 14:14:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-05-14T14:14:16Z</dc:date>
    <item>
      <title>Button Color Change</title>
      <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144105#M23148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can someone help me on to set custom color in a button.&lt;/P&gt;&lt;P&gt;I use a button and it should be green when selected and Red when some other button is selected.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 13:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144105#M23148</guid>
      <dc:creator />
      <dc:date>2009-05-14T13:43:06Z</dc:date>
    </item>
    <item>
      <title>Button Color Change</title>
      <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144106#M23149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;Please check the attached application.&lt;/P&gt;&lt;P&gt;i think , that would help you out.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144106#M23149</guid>
      <dc:creator />
      <dc:date>2009-05-14T14:14:16Z</dc:date>
    </item>
    <item>
      <title>Button Color Change</title>
      <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144107#M23150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To achieve your requirement, i have used macro and calculated color options.&lt;/P&gt;&lt;P&gt;Have a look at &lt;B&gt;macro&lt;/B&gt; @ Macro window and Color option @ &lt;B&gt;color&lt;/B&gt; in Button.&lt;/P&gt;&lt;P&gt;And please take a look at the updated application with this post.&lt;/P&gt;&lt;P&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144107#M23150</guid>
      <dc:creator />
      <dc:date>2009-05-14T14:21:26Z</dc:date>
    </item>
    <item>
      <title>Button Color Change</title>
      <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144108#M23151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sridhar.&lt;/P&gt;&lt;P&gt;That is what I need.&lt;/P&gt;&lt;P&gt;-- Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/144108#M23151</guid>
      <dc:creator />
      <dc:date>2009-05-14T14:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Button Color Change</title>
      <link>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/1613053#M445289</link>
      <description>&lt;P&gt;I have two sets of 'Radio' buttons. Upon leaving a tab, I run a macro which resets the variables controlling the on/off colors for each set of buttons.&lt;/P&gt;&lt;P&gt;the following macro to clear buttons:&lt;/P&gt;&lt;P&gt;&lt;FONT size="1"&gt;Sub ClearButtons&lt;BR /&gt;set v = ActiveDocument.Variables("vActiveButton")&lt;BR /&gt;v.SetContent "0",true&lt;BR /&gt;set v = ActiveDocument.Variables("vActiveButton2")&lt;BR /&gt;v.SetContent "0",&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="1" color="#0000ff"&gt;true&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="1"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="1" color="#0000ff"&gt;End&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT size="1" color="#0000ff"&gt;Sub &lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2019 20:39:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-Color-Change/m-p/1613053#M445289</guid>
      <dc:creator>nickedw0</dc:creator>
      <dc:date>2019-08-15T20:39:29Z</dc:date>
    </item>
  </channel>
</rss>

