<?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 Identify which browser the client is using? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371055#M137983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to identify which version of Internet Explorer the client is using. I know some clients are using IE6 and i want to run a macro onopen to prompt them to upgrade their browser?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running QlikView 9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Mar 2012 09:57:11 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-03-27T09:57:11Z</dc:date>
    <item>
      <title>Identify which browser the client is using?</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371055#M137983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to identify which version of Internet Explorer the client is using. I know some clients are using IE6 and i want to run a macro onopen to prompt them to upgrade their browser?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running QlikView 9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 09:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371055#M137983</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-27T09:57:11Z</dc:date>
    </item>
    <item>
      <title>Identify which browser the client is using?</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371056#M137984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*BUMP*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 20:55:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371056#M137984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-27T20:55:32Z</dc:date>
    </item>
    <item>
      <title>Identify which browser the client is using?</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371057#M137985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; *BUMP*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 12:23:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371057#M137985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-28T12:23:32Z</dc:date>
    </item>
    <item>
      <title>Identify which browser the client is using?</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371058#M137986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robbie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If using the Plug-in, you can use the following to read the registry* ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub GetIEVersion&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Temp, objRegistry, Key&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objRegistry = CreateObject("Wscript.shell")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Key = objRegistry.RegRead("HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Version")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set t = activedocument.getsheetobject("TX01") 'set the text value of TX01 with the key&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p = t.GetProperties&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p.layout.text.v = Key&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t.setproperties p&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... but if you run this in AJAX you will get the key value from the server!!!&amp;nbsp; It's also possible that users have already changed this value for other reasons and is therefore not 100% reliable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Client Type IS stored in the Session logs, but not sure if this can be accessed until the session ends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;flipside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Usual disclaimer for anyone accessing the registry - ensure you know what you are doing before changing any values in the registry as it could cause major system problems!!!&amp;nbsp; Back up your registry first. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 12:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371058#M137986</guid>
      <dc:creator>flipside</dc:creator>
      <dc:date>2012-03-28T12:36:27Z</dc:date>
    </item>
    <item>
      <title>Identify which browser the client is using?</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371059#M137987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You sir are a genius!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the Plug-In so all is good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To anyone wishing to use this don't forget in 'Edit Module' 'Current Local Security' must be set to 'Allow System Access'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers flipside.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 15:05:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-which-browser-the-client-is-using/m-p/371059#M137987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-28T15:05:30Z</dc:date>
    </item>
  </channel>
</rss>

