<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Quiz: A message box that will close automatically</title> <atom:link href="http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/feed/" rel="self" type="application/rss+xml" /><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/</link> <description></description> <lastBuildDate>Tue, 31 Jan 2012 08:17:01 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Mike</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-12540</link> <dc:creator>Mike</dc:creator> <pubDate>Tue, 14 Dec 2010 21:47:15 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-12540</guid> <description>@ Alex
Print is AWESOME!  That&#039;s even better than the Msgbox and doesn&#039;t seem to noticeably slow the script at all!
Thank you for posting about it.</description> <content:encoded><![CDATA[<p>@ Alex</p><p>Print is AWESOME!  That&#8217;s even better than the Msgbox and doesn&#8217;t seem to noticeably slow the script at all!</p><p>Thank you for posting about it.</p> ]]></content:encoded> </item> <item><title>By: ratnakar</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-12447</link> <dc:creator>ratnakar</dc:creator> <pubDate>Wed, 08 Dec 2010 08:08:50 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-12447</guid> <description>msgbox_time=&quot;10&quot;
try this this will be useful for message box automatically closes</description> <content:encoded><![CDATA[<p>msgbox_time=&#8221;10&#8243;<br
/> try this this will be useful for message box automatically closes</p> ]]></content:encoded> </item> <item><title>By: yessica</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-11181</link> <dc:creator>yessica</dc:creator> <pubDate>Thu, 29 Jul 2010 15:31:54 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-11181</guid> <description>Set objshell = createobject(&quot;Wscript.shell&quot;)
rmensaje = objshell.popup(&quot;mensaje&quot;,3,&quot;Mensaje &quot;,64)</description> <content:encoded><![CDATA[<p>Set objshell = createobject(&#8220;Wscript.shell&#8221;)<br
/> rmensaje = objshell.popup(&#8220;mensaje&#8221;,3,&#8221;Mensaje &#8220;,64)</p> ]]></content:encoded> </item> <item><title>By: PRAKASH</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-10955</link> <dc:creator>PRAKASH</dc:creator> <pubDate>Wed, 21 Jul 2010 03:42:13 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-10955</guid> <description>Hi,
While i creating the text area checkpoint,it is showing that Can not create text area checkpoint like that ...can u explain how can i recover this</description> <content:encoded><![CDATA[<p>Hi,<br
/> While i creating the text area checkpoint,it is showing that Can not create text area checkpoint like that &#8230;can u explain how can i recover this</p> ]]></content:encoded> </item> <item><title>By: sateesh munagala</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-9369</link> <dc:creator>sateesh munagala</dc:creator> <pubDate>Sat, 03 Jul 2010 16:42:42 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-9369</guid> <description>excellent answers</description> <content:encoded><![CDATA[<p>excellent answers</p> ]]></content:encoded> </item> <item><title>By: Paul Grossman</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-9132</link> <dc:creator>Paul Grossman</dc:creator> <pubDate>Mon, 28 Jun 2010 00:54:20 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-9132</guid> <description>Sanu wins!
Took 18 months, and his coding style is a bit rough around the edges, but I declare Sanu the first person to fufill the requirement of a function that creates a self-closing dialogbox, and with an icon indicater no less!
Extra points for creativity Sanu!</description> <content:encoded><![CDATA[<p>Sanu wins!</p><p>Took 18 months, and his coding style is a bit rough around the edges, but I declare Sanu the first person to fufill the requirement of a function that creates a self-closing dialogbox, and with an icon indicater no less!</p><p>Extra points for creativity Sanu!</p> ]]></content:encoded> </item> <item><title>By: Sanu</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-9000</link> <dc:creator>Sanu</dc:creator> <pubDate>Wed, 23 Jun 2010 15:46:32 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-9000</guid> <description>Public Function SelfCloseMsgbox(title,content)
Dim x,y
Set x = CreateObject(&quot;WScript.Shell&quot;)
y = x.popup(content,3,title,4+32)
Set x = Nothing
Set y = Nothing
End Function
Call SelfCloseMsgbox(&quot;QTP&quot;,&quot;QTP is wonderful..!!!&quot;)</description> <content:encoded><![CDATA[<p>Public Function SelfCloseMsgbox(title,content)<br
/> Dim x,y<br
/> Set x = CreateObject(&#8220;WScript.Shell&#8221;)<br
/> y = x.popup(content,3,title,4+32)<br
/> Set x = Nothing<br
/> Set y = Nothing<br
/> End Function</p><p>Call SelfCloseMsgbox(&#8220;QTP&#8221;,&#8221;QTP is wonderful..!!!&#8221;)</p> ]]></content:encoded> </item> <item><title>By: Sojan</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-8111</link> <dc:creator>Sojan</dc:creator> <pubDate>Thu, 13 May 2010 09:13:04 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-8111</guid> <description>I need to close QTP Automatically after executing n (may be n=5) number of scripts OR if it find ideal for 5 to 10 seconds after execution. plz help
Is there any code using Vb script</description> <content:encoded><![CDATA[<p>I need to close QTP Automatically after executing n (may be n=5) number of scripts OR if it find ideal for 5 to 10 seconds after execution. plz help<br
/> Is there any code using Vb script</p> ]]></content:encoded> </item> <item><title>By: Rashmi Baral</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-7083</link> <dc:creator>Rashmi Baral</dc:creator> <pubDate>Wed, 03 Mar 2010 22:38:54 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-7083</guid> <description>REM use this function as a reusable fucntion.
REM instead of msgbox call printmsg.
REM while you dont want msgs to be displayed just comment one line as shown below.
REM If the code is in debug mode, just enable the line to view msgbox with value
Function Printmsg(printparam)
&#039;msgbox(printparam)
End Function</description> <content:encoded><![CDATA[<p>REM use this function as a reusable fucntion.<br
/> REM instead of msgbox call printmsg.<br
/> REM while you dont want msgs to be displayed just comment one line as shown below.<br
/> REM If the code is in debug mode, just enable the line to view msgbox with value</p><p>Function Printmsg(printparam)<br
/> &#8216;msgbox(printparam)<br
/> End Function</p> ]]></content:encoded> </item> <item><title>By: Swapna</title><link>http://www.learnqtp.com/quiz-a-message-box-that-will-close-automatically/comment-page-1/#comment-7025</link> <dc:creator>Swapna</dc:creator> <pubDate>Fri, 26 Feb 2010 19:42:10 +0000</pubDate> <guid
isPermaLink="false">http://www.learnqtp.com/?p=33#comment-7025</guid> <description>Hi Alex,
I have used the print before, but I had one question. How do I store the values from the print log to the txt file ( or any file)?</description> <content:encoded><![CDATA[<p>Hi Alex,</p><p>I have used the print before, but I had one question. How do I store the values from the print log to the txt file ( or any file)?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 4/22 queries in 0.027 seconds using disk: basic

Served from: www.learnqtp.com @ 2012-02-10 13:33:37 -->
