<?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: Automating Windows Calculator Part 1</title>
	<atom:link href="http://relevantcodes.com/automating-windows-calculator-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://relevantcodes.com/automating-windows-calculator-part-1/</link>
	<description>A Test Development Resource for HP QuickTest Professional.</description>
	<lastBuildDate>Thu, 09 Feb 2012 12:13:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Sneha</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-53326</link>
		<dc:creator>Sneha</dc:creator>
		<pubDate>Sat, 31 Dec 2011 16:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-53326</guid>
		<description>Happy New Year to All QTP Lovers, and Especially Anshoo Arora.</description>
		<content:encoded><![CDATA[<p>Happy New Year to All QTP Lovers, and Especially Anshoo Arora.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pragya</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-53263</link>
		<dc:creator>Pragya</dc:creator>
		<pubDate>Fri, 30 Dec 2011 05:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-53263</guid>
		<description>Hi Anshu. please let me know when we will be getting advanced topic on this article. Looking forward for your early response.</description>
		<content:encoded><![CDATA[<p>Hi Anshu. please let me know when we will be getting advanced topic on this article. Looking forward for your early response.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manu Sekhar S</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-37626</link>
		<dc:creator>Manu Sekhar S</dc:creator>
		<pubDate>Thu, 29 Sep 2011 16:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-37626</guid>
		<description>Hi Anshoo,

Its a very nice learning.

Do you have any article which focus on VC++ applications as an example.
Or any other scripting examples on windows applications other than inbuilt flight reservation application

Regards,
Manu</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,</p>
<p>Its a very nice learning.</p>
<p>Do you have any article which focus on VC++ applications as an example.<br />
Or any other scripting examples on windows applications other than inbuilt flight reservation application</p>
<p>Regards,<br />
Manu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-24820</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Fri, 24 Jun 2011 16:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-24820</guid>
		<description>Prachi:  If you&#039;re testing this scenario in an Remote Desktop session, open the session and run the test.  Do not minimize the window or close it and see if it works?</description>
		<content:encoded><![CDATA[<p>Prachi:  If you&#8217;re testing this scenario in an Remote Desktop session, open the session and run the test.  Do not minimize the window or close it and see if it works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prachi</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-23211</link>
		<dc:creator>prachi</dc:creator>
		<pubDate>Tue, 14 Jun 2011 11:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-23211</guid>
		<description>Hi Anshoo,

I have used this approach to open notepad and it was working fine earlier :
Window(&quot;Window&quot;).WinButton(&quot;start&quot;).Click
Window(&quot;Window&quot;).Type(&quot;R&quot;)
Dialog(&quot;Run&quot;).WinEdit(&quot;Open:&quot;).Type &quot;notepad&quot;

Now when I run the same code ,in local it works .But fails in server machine with error:

Cannot find the &quot;Open:&quot; object&#039;s parent &quot;Run&quot; (class Dialog). Verify that parent properties match an object currently displayed in your application.

Line (33): &quot;Dialog(&quot;Run&quot;).WinEdit(&quot;Open:&quot;).Type &quot;notepad&quot;&quot;. 

The dialog is in OR,and it works in local machine.Do you see any familiar server issue here .I have tried with adding the dialog again.
But the problem seems here with Type command not working on Window(&quot;Window&quot;).</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,</p>
<p>I have used this approach to open notepad and it was working fine earlier :<br />
Window(&#8220;Window&#8221;).WinButton(&#8220;start&#8221;).Click<br />
Window(&#8220;Window&#8221;).Type(&#8220;R&#8221;)<br />
Dialog(&#8220;Run&#8221;).WinEdit(&#8220;Open:&#8221;).Type &#8220;notepad&#8221;</p>
<p>Now when I run the same code ,in local it works .But fails in server machine with error:</p>
<p>Cannot find the &#8220;Open:&#8221; object&#8217;s parent &#8220;Run&#8221; (class Dialog). Verify that parent properties match an object currently displayed in your application.</p>
<p>Line (33): &#8220;Dialog(&#8220;Run&#8221;).WinEdit(&#8220;Open:&#8221;).Type &#8220;notepad&#8221;". </p>
<p>The dialog is in OR,and it works in local machine.Do you see any familiar server issue here .I have tried with adding the dialog again.<br />
But the problem seems here with Type command not working on Window(&#8220;Window&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Preeti</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-12137</link>
		<dc:creator>Preeti</dc:creator>
		<pubDate>Sat, 27 Nov 2010 05:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-12137</guid>
		<description>Hello Anshoo Arora,

I am new to QTP. But the way you explain is superb. Thank you. Keep posting such useful articles.</description>
		<content:encoded><![CDATA[<p>Hello Anshoo Arora,</p>
<p>I am new to QTP. But the way you explain is superb. Thank you. Keep posting such useful articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-10554</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Wed, 08 Sep 2010 16:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-10554</guid>
		<description>Chintan,

Please see below:

Can we pass array reference or dictionary object reference to Environmental variable? Yes.
If possible can you please tell me more about GlobalDictionary Object? See &lt;a href=&quot;http://relevantcodes.com/qtp-creating-a-highly-efficient-test-data-dictionary/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Chintan,</p>
<p>Please see below:</p>
<p>Can we pass array reference or dictionary object reference to Environmental variable? Yes.<br />
If possible can you please tell me more about GlobalDictionary Object? See <a href="http://relevantcodes.com/qtp-creating-a-highly-efficient-test-data-dictionary/" rel="nofollow">here</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chintan shah</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-10552</link>
		<dc:creator>Chintan shah</dc:creator>
		<pubDate>Wed, 08 Sep 2010 14:18:32 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-10552</guid>
		<description>Hi Anshoo,
I have one doubt :
Can we pass array reference or dictionary object reference to Environmental variable ?  and if possible can you please tell me more about GlobalDictionary Object ?? I know how to create reserve objects by creating new registry from registry key ...</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,<br />
I have one doubt :<br />
Can we pass array reference or dictionary object reference to Environmental variable ?  and if possible can you please tell me more about GlobalDictionary Object ?? I know how to create reserve objects by creating new registry from registry key &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chintan shah</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-10322</link>
		<dc:creator>chintan shah</dc:creator>
		<pubDate>Wed, 25 Aug 2010 11:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-10322</guid>
		<description>i will keep U bugging with many issues which i will face ....... now on :))</description>
		<content:encoded><![CDATA[<p>i will keep U bugging with many issues which i will face &#8230;&#8230;. now on :))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chintan shah</title>
		<link>http://relevantcodes.com/automating-windows-calculator-part-1/#comment-10321</link>
		<dc:creator>chintan shah</dc:creator>
		<pubDate>Wed, 25 Aug 2010 08:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=1748#comment-10321</guid>
		<description>Anshoo arora ... U r simply superb !!  i have never seen anyone sparing so much time on his portal and replying everyones query .. U rock man .. keep it up :))</description>
		<content:encoded><![CDATA[<p>Anshoo arora &#8230; U r simply superb !!  i have never seen anyone sparing so much time on his portal and replying everyones query .. U rock man .. keep it up :))</p>
]]></content:encoded>
	</item>
</channel>
</rss>

