<?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 Message Box Problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146239#M24835</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish Thank u sooo much.it worked for me..&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sikandar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 15:32:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-09T15:32:15Z</dc:date>
    <item>
      <title>Message Box Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146237#M24833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H5&gt;HI&lt;/H5&gt;&lt;H5&gt;Syntax: VBScript MsgBox Function&lt;/H5&gt;&lt;P class="Code"&gt;MsgBox(prompt[, buttons][, title][, helpfile, context])&lt;/P&gt;&lt;P class="Code"&gt;&lt;STRONG&gt;Can we use this syntax in Macros?if yes than how?&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;STRONG&gt;Sikandar&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146237#M24833</guid>
      <dc:creator />
      <dc:date>2009-06-09T13:50:53Z</dc:date>
    </item>
    <item>
      <title>Message Box Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146238#M24834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sikandar,&lt;/P&gt;&lt;P&gt;Please try this :-&lt;/P&gt;&lt;P&gt;MsgBox "Hello",vbInformation,"Test Title"&lt;/P&gt;&lt;P&gt;Details are below :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="0" class="reference" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="left" valign="top" width="20%"&gt;Parameter&lt;/TH&gt;&lt;TH align="left" valign="top" width="80%"&gt;Description&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;prompt&lt;/TD&gt;&lt;TD valign="top"&gt;Required. The message to show in the message box. Maximum length is 1024 characters. You can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or carriage return-linefeed character combination (Chr(13) &amp;amp; Chr(10)) between each line&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;buttons&lt;/TD&gt;&lt;TD valign="top"&gt;Optional. A value or a sum of values that specifies the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. Default value is 0 &lt;UL&gt;&lt;LI&gt;0 = vbOKOnly - OK button only&lt;/LI&gt;&lt;LI&gt;1 = vbOKCancel - OK and Cancel buttons&lt;/LI&gt;&lt;LI&gt;2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons&lt;/LI&gt;&lt;LI&gt;3 = vbYesNoCancel - Yes, No, and Cancel buttons&lt;/LI&gt;&lt;LI&gt;4 = vbYesNo - Yes and No buttons&lt;/LI&gt;&lt;LI&gt;5 = vbRetryCancel - Retry and Cancel buttons&lt;/LI&gt;&lt;LI&gt;16 = vbCritical - Critical Message icon&lt;/LI&gt;&lt;LI&gt;32 = vbQuestion - Warning Query icon&lt;/LI&gt;&lt;LI&gt;48 = vbExclamation - Warning Message icon&lt;/LI&gt;&lt;LI&gt;64 = vbInformation - Information Message icon&lt;/LI&gt;&lt;LI&gt;0 = vbDefaultButton1 - First button is default&lt;/LI&gt;&lt;LI&gt;256 = vbDefaultButton2 - Second button is default&lt;/LI&gt;&lt;LI&gt;512 = vbDefaultButton3 - Third button is default&lt;/LI&gt;&lt;LI&gt;768 = vbDefaultButton4 - Fourth button is default&lt;/LI&gt;&lt;LI&gt;0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)&lt;/LI&gt;&lt;LI&gt;4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;We can divide the buttons values into four groups: The first group (0-5) describes the buttons to be displayed in the message box, the second group (16, 32, 48, 64) describes the icon style, the third group (0, 256, 512, 768) indicates which button is the default; and the fourth group (0, 4096) determines the modality of the message box. When adding numbers to create a final value for the buttons parameter, use only one number from each group&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;title&lt;/TD&gt;&lt;TD valign="top"&gt;Optional. The title of the message box. Default is the application name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;helpfile&lt;/TD&gt;&lt;TD valign="top"&gt;Optional. The name of a Help file to use. Must be used with the context parameter&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;context&lt;/TD&gt;&lt;TD valign="top"&gt;Optional. The Help context number to the Help topic. Must be used with the helpfile parameter&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will work.&lt;/P&gt;&lt;P&gt;- Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 14:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146238#M24834</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2009-06-09T14:37:02Z</dc:date>
    </item>
    <item>
      <title>Message Box Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146239#M24835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish Thank u sooo much.it worked for me..&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sikandar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 15:32:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-Box-Problem/m-p/146239#M24835</guid>
      <dc:creator />
      <dc:date>2009-06-09T15:32:15Z</dc:date>
    </item>
  </channel>
</rss>

