<?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: VB macro message box in AJAX in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043123#M350927</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope the below link will help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/159910"&gt;Macro on AJAX or IE Plugin&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Apr 2016 21:45:30 GMT</pubDate>
    <dc:creator>trdandamudi</dc:creator>
    <dc:date>2016-04-28T21:45:30Z</dc:date>
    <item>
      <title>VB macro message box in AJAX</title>
      <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043122#M350926</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 have a macro that gets triggered via an Action Button. At the end of the macro a message box displays a message.&lt;/P&gt;&lt;P&gt;It works when executed from the Desktop client but the message box doesn't seem to work in AJAX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The VB code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub MessageBox&lt;/P&gt;&lt;P&gt;&amp;nbsp; vAnswer = MsgBox("Export Address Data Request Sent")&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should this work in AJAX? If No, what would be a good work around?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Maria&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 21:12:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043122#M350926</guid>
      <dc:creator />
      <dc:date>2016-04-28T21:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: VB macro message box in AJAX</title>
      <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043123#M350927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope the below link will help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/159910"&gt;Macro on AJAX or IE Plugin&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 21:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043123#M350927</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-04-28T21:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: VB macro message box in AJAX</title>
      <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043124#M350928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Most macros won't work within the ajax-client but if it's only a message-box you could use a textbox with a variable within the visibility-condition for it and your button switched simply these variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 07:25:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043124#M350928</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-29T07:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: VB macro message box in AJAX</title>
      <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043125#M350929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus solution is the best. Your macro will actually stop running at the line where you have MsgBox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 07:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043125#M350929</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2016-04-29T07:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: VB macro message box in AJAX</title>
      <link>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043126#M350930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-users/27943"&gt;marcus_sommer&lt;/A&gt; has suggested, using a variable and textbox is likely to be a better solution than a macro.&lt;/P&gt;&lt;P&gt;Not all macros are supported in the Ajax client and Actions can be used for many of the tasks you think would require a macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you read this blog in relation to macros &amp;amp; QlikView server? &lt;A href="https://community.qlik.com/qlik-blogpost/3700"&gt;Macros are Bad&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 08:02:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VB-macro-message-box-in-AJAX/m-p/1043126#M350930</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-04-29T08:02:07Z</dc:date>
    </item>
  </channel>
</rss>

