<?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: QTP: Parameterization with Excel</title>
	<atom:link href="http://relevantcodes.com/qtp-parameterization-with-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://relevantcodes.com/qtp-parameterization-with-excel/</link>
	<description>A Resource for Test Automation Development</description>
	<lastBuildDate>Fri, 18 May 2012 07:21:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Rajesh</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-60689</link>
		<dc:creator>Rajesh</dc:creator>
		<pubDate>Thu, 10 May 2012 20:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-60689</guid>
		<description>Hi Anshoo,

I need information of what are the different &quot;Type Libraries&quot;  that can be used in QTP .  I am also looking for some internal information of those type libraries.  where can i find this info in online (any website link)?</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,</p>
<p>I need information of what are the different &#8220;Type Libraries&#8221;  that can be used in QTP .  I am also looking for some internal information of those type libraries.  where can i find this info in online (any website link)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aniket</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-60682</link>
		<dc:creator>Aniket</dc:creator>
		<pubDate>Thu, 10 May 2012 15:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-60682</guid>
		<description>How do I copy the entire column but skip the first row?

Assuming all bojects are already created, here is the code to copy column from one sheet and paste it to another sheet in same file.

Set objRange=objBook.Worksheets(&quot;Action1&quot;).Range(&quot;D1&quot;).EntireColumn
objRange.Copy

objBook.Worksheets(&quot;Action2&quot;).Range(&quot;D1&quot;).PasteSpecial Paste =xlValues

It copies the entire column, if only I want to skip first row , how do I do that?

Thank you</description>
		<content:encoded><![CDATA[<p>How do I copy the entire column but skip the first row?</p>
<p>Assuming all bojects are already created, here is the code to copy column from one sheet and paste it to another sheet in same file.</p>
<p>Set objRange=objBook.Worksheets(&#8220;Action1&#8243;).Range(&#8220;D1&#8243;).EntireColumn<br />
objRange.Copy</p>
<p>objBook.Worksheets(&#8220;Action2&#8243;).Range(&#8220;D1&#8243;).PasteSpecial Paste =xlValues</p>
<p>It copies the entire column, if only I want to skip first row , how do I do that?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Patel</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-60025</link>
		<dc:creator>Prashant Patel</dc:creator>
		<pubDate>Thu, 26 Apr 2012 09:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-60025</guid>
		<description>Hi Anshoo

I just started my career in Automation Testing.I wanted to know that what are the areas i should stress more.

Prashant</description>
		<content:encoded><![CDATA[<p>Hi Anshoo</p>
<p>I just started my career in Automation Testing.I wanted to know that what are the areas i should stress more.</p>
<p>Prashant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-57566</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Thu, 15 Mar 2012 14:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-57566</guid>
		<description>Anuj, you can bind to Excel if its instance is open (or will open if closed) using GetObject.</description>
		<content:encoded><![CDATA[<p>Anuj, you can bind to Excel if its instance is open (or will open if closed) using GetObject.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-57551</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Thu, 15 Mar 2012 13:33:21 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-57551</guid>
		<description>Mallikarjun, there are several ways you can do this:

1. Store the value in an Environment variable
2. Store the value in a Global variable
3. Store the value externally - text file, xml file, xls file etc.</description>
		<content:encoded><![CDATA[<p>Mallikarjun, there are several ways you can do this:</p>
<p>1. Store the value in an Environment variable<br />
2. Store the value in a Global variable<br />
3. Store the value externally &#8211; text file, xml file, xls file etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-57124</link>
		<dc:creator>Anuj</dc:creator>
		<pubDate>Fri, 09 Mar 2012 07:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-57124</guid>
		<description>Hi,

I want to update the excel when the excel is opened. Anyone has any idea about that..

Thanks,
Anuj</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want to update the excel when the excel is opened. Anyone has any idea about that..</p>
<p>Thanks,<br />
Anuj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mallikarjun</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-56673</link>
		<dc:creator>Mallikarjun</dc:creator>
		<pubDate>Wed, 29 Feb 2012 10:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-56673</guid>
		<description>Hi Anshoo,

Pls help me out in the below scenario.

Ex- Firstly we order a book or some thing in external portal and in the final stage, Order ID wil be generated. So here how can i extract that Order ID and store in qtp and use the same Order ID again in internal portal..

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,</p>
<p>Pls help me out in the below scenario.</p>
<p>Ex- Firstly we order a book or some thing in external portal and in the final stage, Order ID wil be generated. So here how can i extract that Order ID and store in qtp and use the same Order ID again in internal portal..</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karan</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-54836</link>
		<dc:creator>karan</dc:creator>
		<pubDate>Sat, 28 Jan 2012 04:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-54836</guid>
		<description>tHANKS</description>
		<content:encoded><![CDATA[<p>tHANKS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naveen</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-54611</link>
		<dc:creator>naveen</dc:creator>
		<pubDate>Sun, 22 Jan 2012 03:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-54611</guid>
		<description>Hi how to validate the  present in the excel sheet.
i mean in sheet i have 3 fields ie&#039;s- name: ,password, url
how to check is it hyperlink or plain text
ls answer any one</description>
		<content:encoded><![CDATA[<p>Hi how to validate the  present in the excel sheet.<br />
i mean in sheet i have 3 fields ie&#8217;s- name: ,password, url<br />
how to check is it hyperlink or plain text<br />
ls answer any one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-parameterization-with-excel/#comment-53010</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Tue, 27 Dec 2011 12:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2190#comment-53010</guid>
		<description>Mahesh: see if you can find some helpful code in the class library here: http://relevantcodes.com/excelutil-class-library-excel-utility-methods/</description>
		<content:encoded><![CDATA[<p>Mahesh: see if you can find some helpful code in the class library here: <a href="http://relevantcodes.com/excelutil-class-library-excel-utility-methods/" rel="nofollow">http://relevantcodes.com/excelutil-class-library-excel-utility-methods/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 10/14 queries in 0.003 seconds using disk: basic
Object Caching 379/379 objects using disk: basic
Content Delivery Network via N/A

Served from: relevantcodes.com @ 2012-05-19 11:32:15 -->
