<?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: How to pop out a MsgBox in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629695#M1091727</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2014 14:23:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-05-12T14:23:17Z</dc:date>
    <item>
      <title>How to pop out a MsgBox in the script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629693#M1091725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to do an IF condition and if it's false , i want to pop out a MsgBox with a message and Ok or Cancel ,&lt;/P&gt;&lt;P&gt;and store the result in a variable .&lt;/P&gt;&lt;P&gt;How is it possible , thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 12:51:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629693#M1091725</guid>
      <dc:creator />
      <dc:date>2014-05-12T12:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to pop out a MsgBox in the script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629694#M1091726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See "help":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1327"&gt;&lt;/A&gt;&lt;A name="MsgBox("&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;MsgBox(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;str msg [, str caption [, mb_buttons [, mb_icons[, mb_defbutton]]]&lt;/SPAN&gt;] &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;This function can be used in the script only and opens a message box during the script execution. The parameters msg and caption are used as message and caption texts, respectively. The parameter &lt;SPAN class="Italic"&gt;mb_buttons&lt;/SPAN&gt; defines what buttons will be shown in the message box, according to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0 or 'OK' for a single OK button,&lt;BR /&gt;1 or 'OKCANCEL' for two buttons, OK and Cancel,&lt;BR /&gt;2 or 'ABORTRETRYIGNORE' for three buttons, Abort, Retry and Ignore,&lt;BR /&gt;3 or 'YESNOCANCEL' for three buttons, Yes, No and Cancel,&lt;BR /&gt;4 or 'YESNO' for two buttons, Yes and No,&lt;BR /&gt;5 or 'RETRYCANCEL' for two buttons, Retry and Cancel. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;The parameter &lt;SPAN class="Italic"&gt;mb_icons&lt;/SPAN&gt; defines what icon will be shown in the message box, according to:&lt;/P&gt;&lt;P&gt; 0 or empty string for no icon,&lt;BR /&gt;16 or 'ICONHAND' for an icon with an X, used for critical errors,&lt;BR /&gt;32 or 'ICONQUESTION' for an icon with a question mark,&lt;BR /&gt;48 or 'ICONEXCLAMATION' for icon with an exclamation mark, used for minor errors, cautions and warnings&lt;BR /&gt;64 or 'ICONASTERISK' icon with an &lt;SPAN class="Italic"&gt;i&lt;/SPAN&gt;, used for informational messages. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;The parameter &lt;SPAN class="Italic"&gt;mb_defbutton&lt;/SPAN&gt; defines what button will have focus when the message box is shown, according to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0 or 'DEFBUTTON1' if the first button should have focus,&lt;BR /&gt;256 or 'DEFBUTTON2' if the second button should have focus,&lt;BR /&gt;512 or 'DEFBUTTON3' if the third button should have focus,&lt;BR /&gt;768 or 'DEFBUTTON4' if the fourth button should have focus. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;The function returns an integer that shows what button has been pressed by the user, according to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 for OK,&lt;BR /&gt;2 for Cancel,&lt;/P&gt;&lt;P&gt;3 for Abort,&lt;BR /&gt;4 for Retry,&lt;BR /&gt;5 for Ignore,&lt;BR /&gt;6 for Yes,&lt;BR /&gt;7 for No&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;The parameter 3, 4 and 5 will internally be added, so if numeric values other than the above mentioned ones are used, you may get an unexpected combination of icons and buttons. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal;"&gt;The message box function returns NULL if the dialog cannot be shown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="example"&gt;Example: &lt;/P&gt;&lt;P class="Code"&gt;Load &lt;BR /&gt;MsgBox('Message 2', 'msgbox', 'OKCANCEL', 'ICONASTERISK') &lt;BR /&gt;as x, 2 as r &lt;BR /&gt;autogenerate 1; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 13:08:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629694#M1091726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-12T13:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to pop out a MsgBox in the script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629695#M1091727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 14:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pop-out-a-MsgBox-in-the-script/m-p/629695#M1091727</guid>
      <dc:creator />
      <dc:date>2014-05-12T14:23:17Z</dc:date>
    </item>
  </channel>
</rss>

