<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Quick test professional</title>
	<atom:link href="http://quicktestprofessional.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://quicktestprofessional.wordpress.com</link>
	<description>QTP Tips  QTP codes  QTP Faqs  and more</description>
	<lastBuildDate>Thu, 27 Nov 2008 06:18:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='quicktestprofessional.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1b1b59d79f5c503a1384e206b6dbf1cd?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Quick test professional</title>
		<link>http://quicktestprofessional.wordpress.com</link>
	</image>
			<item>
		<title>How To open Password Protected Excel sheets</title>
		<link>http://quicktestprofessional.wordpress.com/2008/11/27/how-to-open-password-protected-excel-sheets/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/11/27/how-to-open-password-protected-excel-sheets/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:17:38 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[Excel Automation]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=178</guid>
		<description><![CDATA[Function UnprotectXL(filePath,fileName,pwd,writeresPwd)
   Set objExcel=CreateObject(&#8220;Excel.Application&#8221;)
   objExcel.Visible=false
   testData=filePath&#38;&#8221;\&#8221;&#38;fileName
 
   Set oWorkbook=objExcel.Workbooks
 
   Set myWkbook=objExcel.Workbooks.open (testData,0,False,5,pwd,writeresPwd)
   objExcel.DisplayAlerts=False
   oWorkbook(fileName).Activate
   For Each w in objExcel.Workbooks
        w.SaveAs testData,,&#8221;",&#8221;"
      
   Next
 
   objExcel.Workbooks.Close
   objExcel.Quit
   Set oWorkbook=Nothing
   Set objExcel=Nothing
  
End Function
Function ProtectXL(filePath,fileName,pwd,writeresPwd)
     On Error Resume Next
     Set objExcel=CreateObject(&#8220;Excel.Application&#8221;)
     objExcel.Visible=False
     testData=filePath&#38;&#8221;\&#8221;&#38;fileName
     Set oWorkbook=objExcel.Workbooks
     Set outputWkbook=objExcel.Workbooks.open (testData,0,False)
     oWorkbook(testData).Activate
     objExcel.DisplayAlerts=False  
     outputWkbook.SaveAs testData,,pwd,writeresPwd
   
     outputWkbook.Close
     objExcel.Workbooks.Close
     objExcel.Quit
     Set outputWkbook=Nothing
     Set objExcel=Nothing
  
End Function
&#8216;Call ProtectXL(&#8220;C:\Documents [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=178&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Function UnprotectXL(filePath,fileName,pwd,writeresPwd)<br />
   Set objExcel=CreateObject(&#8220;Excel.Application&#8221;)<br />
   objExcel.Visible=false<br />
   testData=filePath&amp;&#8221;\&#8221;&amp;fileName<br />
 <br />
   Set oWorkbook=objExcel.Workbooks<br />
 <br />
   Set myWkbook=objExcel.Workbooks.open (testData,0,False,5,pwd,writeresPwd)<br />
   objExcel.DisplayAlerts=False<br />
   oWorkbook(fileName).Activate<br />
   For Each w in objExcel.Workbooks<br />
        w.SaveAs testData,,&#8221;",&#8221;"<br />
      <br />
   Next<br />
 <br />
   objExcel.Workbooks.Close<br />
   objExcel.Quit<br />
   Set oWorkbook=Nothing<br />
   Set objExcel=Nothing<br />
  <br />
End Function<br />
Function ProtectXL(filePath,fileName,pwd,writeresPwd)<br />
     On Error Resume Next<br />
     Set objExcel=CreateObject(&#8220;Excel.Application&#8221;)<br />
     objExcel.Visible=False<br />
     testData=filePath&amp;&#8221;\&#8221;&amp;fileName<br />
     Set oWorkbook=objExcel.Workbooks<br />
     Set outputWkbook=objExcel.Workbooks.open (testData,0,False)<br />
     oWorkbook(testData).Activate<br />
     objExcel.DisplayAlerts=False  <br />
     outputWkbook.SaveAs testData,,pwd,writeresPwd<br />
   <br />
     outputWkbook.Close<br />
     objExcel.Workbooks.Close<br />
     objExcel.Quit<br />
     Set outputWkbook=Nothing<br />
     Set objExcel=Nothing<br />
  <br />
End Function</p>
<p>&#8216;Call ProtectXL(&#8220;C:\Documents and Settings\kmohankumar\Desktop&#8221;,&#8221;4.xls&#8221;,&#8221;test123&#8243;,&#8221;test123&#8243;)<br />
&#8216;Call UnprotectXL(&#8220;C:\Documents and Settings\kmohankumar\Desktop&#8221;,&#8221;4.xls&#8221;,&#8221;test123&#8243;,&#8221;test123&#8243;)</p>
<p><strong>Author: Mohan Kakarla</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=178&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/11/27/how-to-open-password-protected-excel-sheets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Merge 2 XML using Dotnet Factory</title>
		<link>http://quicktestprofessional.wordpress.com/2008/11/27/merge-2-xml-using-dotnet-factory/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/11/27/merge-2-xml-using-dotnet-factory/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:02:50 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[DotNetFactory]]></category>
		<category><![CDATA[XML Scripting]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=176</guid>
		<description><![CDATA[Dim objReader1,objReader2,objds1,objds2
Set objReader1 = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlTextReader&#8221;, &#8220;System.Xml&#8221;,&#8221;C:\Documents and Settings\kmohankumar\Desktop\11.xml&#8221;)&#8217; Creates the instance for the XMLWriter
Set objReader2 = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlTextReader&#8221;, &#8220;System.Xml&#8221;,&#8221;C:\Documents and Settings\kmohankumar\Desktop\12.xml&#8221;)&#8217;
Set objds1 = DotNetFactory.CreateInstance(&#8220;System.Data.DataSet&#8221;, &#8220;System.Data&#8221;)
Set objds2 = DotNetFactory.CreateInstance(&#8220;System.Data.DataSet&#8221;, &#8220;System.Data&#8221;)
objds1.ReadXml(objReader1)
objds2.ReadXml(objReader2)
objds1.Merge(objds2)
objds1.WriteXml(&#8220;C:\Documents and Settings\kmohankumar\Desktop\13.xml&#8221;)
objReader1.close
objReader2.close
Set objReader1=Nothing
Set objReader2=Nothing
Set objds1=nothing
Set objds2=nothing
  
Author:Mohan Kakarla
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=176&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Dim objReader1,objReader2,objds1,objds2<br />
Set objReader1 = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlTextReader&#8221;, &#8220;System.Xml&#8221;,&#8221;C:\Documents and Settings\kmohankumar\Desktop\11.xml&#8221;)&#8217; Creates the instance for the XMLWriter<br />
Set objReader2 = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlTextReader&#8221;, &#8220;System.Xml&#8221;,&#8221;C:\Documents and Settings\kmohankumar\Desktop\12.xml&#8221;)&#8217;<br />
Set objds1 = DotNetFactory.CreateInstance(&#8220;System.Data.DataSet&#8221;, &#8220;System.Data&#8221;)<br />
Set objds2 = DotNetFactory.CreateInstance(&#8220;System.Data.DataSet&#8221;, &#8220;System.Data&#8221;)<br />
objds1.ReadXml(objReader1)<br />
objds2.ReadXml(objReader2)<br />
objds1.Merge(objds2)<br />
objds1.WriteXml(&#8220;C:\Documents and Settings\kmohankumar\Desktop\13.xml&#8221;)<br />
objReader1.close<br />
objReader2.close<br />
Set objReader1=Nothing<br />
Set objReader2=Nothing<br />
Set objds1=nothing<br />
Set objds2=nothing<br />
  </p>
<p><strong>Author:Mohan Kakarla</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=176&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/11/27/merge-2-xml-using-dotnet-factory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Create XML using Dotnet Factory</title>
		<link>http://quicktestprofessional.wordpress.com/2008/11/27/create-xml-using-dotnet-factory/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/11/27/create-xml-using-dotnet-factory/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 05:57:27 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[DotNetFactory]]></category>
		<category><![CDATA[XML Scripting]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=174</guid>
		<description><![CDATA[ Dim objWriter,XmlWriter
   Set objWriter = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlWriter&#8221;, &#8220;System.Xml&#8221;)&#8217; Creates the instance for the XMLWriter
 set XmlWriter=objWriter.Create(&#8220;C:\Documents and Settings\kmohankumar\Desktop\1234.xml&#8221;)&#8217; creates xml document
 
 XmlWriter.WriteStartElement(&#8220;Books&#8221;)&#8217; start writing the element
 XmlWriter.WriteStartElement(&#8220;Author&#8221;)
XmlWriter.WriteAttributeString &#8220;Name&#8221;, &#8220;Mohan&#8221;&#8216; writes  attributes and its values to the element
 XmlWriter.WriteEndElement()&#8217; ends writing the element
 XmlWriter.WriteStartElement(&#8220;Title&#8221;)
XmlWriter.WriteAttributeString &#8220;Title1&#8243;, &#8220;QTP&#8221;&#8216;
 XmlWriter.WriteEndElement()
 XmlWriter.WriteFullEndElement()
XmlWriter.close()
Set objWriter =Nothing
Author:Mohan kakarla
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=174&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Dim objWriter,XmlWriter<br />
   Set objWriter = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlWriter&#8221;, &#8220;System.Xml&#8221;)&#8217; Creates the instance for the XMLWriter<br />
 set XmlWriter=objWriter.Create(&#8220;C:\Documents and Settings\kmohankumar\Desktop\1234.xml&#8221;)&#8217; creates xml document<br />
 <br />
 XmlWriter.WriteStartElement(&#8220;Books&#8221;)&#8217; start writing the element<br />
 XmlWriter.WriteStartElement(&#8220;Author&#8221;)</p>
<p>XmlWriter.WriteAttributeString &#8220;Name&#8221;, &#8220;Mohan&#8221;&#8216; writes  attributes and its values to the element<br />
 XmlWriter.WriteEndElement()&#8217; ends writing the element<br />
 XmlWriter.WriteStartElement(&#8220;Title&#8221;)</p>
<p>XmlWriter.WriteAttributeString &#8220;Title1&#8243;, &#8220;QTP&#8221;&#8216;<br />
 XmlWriter.WriteEndElement()<br />
 XmlWriter.WriteFullEndElement()</p>
<p>XmlWriter.close()</p>
<p>Set objWriter =Nothing</p>
<p>Author:Mohan kakarla</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=174&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/11/27/create-xml-using-dotnet-factory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Read XML using Dotnet Factory</title>
		<link>http://quicktestprofessional.wordpress.com/2008/11/27/read-xml-using-dotnet-factory/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/11/27/read-xml-using-dotnet-factory/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 05:47:09 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[DotNetFactory]]></category>
		<category><![CDATA[XML Scripting]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=172</guid>
		<description><![CDATA[Set objReader = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlReader&#8221;, &#8220;System.Xml&#8221;)
set XmlReader=objReader.Create(&#8220;C:\Documents and Settings\kmohankumar\Desktop\3.xml&#8221;)
while (XmlReader.Read())
If  XmlReader.NodeType = &#8220;XmlDeclaration&#8221; or XmlReader.NodeType = &#8220;Element&#8221;Then
  
    Reporter.ReportEvent micPass, &#8220;NodeType:&#8221;&#38;XmlReader.NodeType &#38;&#8221;  Name :&#8221;&#38; XmlReader.Name&#38; &#8221; is at Depth:&#8221;&#38; XmlReader.Depth,&#8221;"
    If XmlReader.HasValue Then
        Reporter.ReportEvent micPass, &#8221; Value: &#8220;&#38; XmlReader.Value,&#8221;"
    End If
    Reporter.ReportEvent micPass, &#8220;Element:&#8221;&#38; XmlReader.Name&#38;&#8221;  has attribute(s)&#8221;&#38;&#8221;:&#8221;&#38; XmlReader.AttributeCount,&#8221;"
  If XmlReader.AttributeCount &#62; 0 Then
        while  XmlReader.MoveToNextAttribute()
     fn = XmlReader.Name
     ns [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=172&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Set objReader = DotNetFactory.CreateInstance(&#8220;System.Xml.XmlReader&#8221;, &#8220;System.Xml&#8221;)<br />
set XmlReader=objReader.Create(&#8220;C:\Documents and Settings\kmohankumar\Desktop\3.xml&#8221;)</p>
<p>while (XmlReader.Read())</p>
<p>If  XmlReader.NodeType = &#8220;XmlDeclaration&#8221; or XmlReader.NodeType = &#8220;Element&#8221;Then<br />
  <br />
    Reporter.ReportEvent micPass, &#8220;NodeType:&#8221;&amp;XmlReader.NodeType &amp;&#8221;  Name :&#8221;&amp; XmlReader.Name&amp; &#8221; is at Depth:&#8221;&amp; XmlReader.Depth,&#8221;"</p>
<p>    If XmlReader.HasValue Then<br />
        Reporter.ReportEvent micPass, &#8221; Value: &#8220;&amp; XmlReader.Value,&#8221;"<br />
    End If</p>
<p>    Reporter.ReportEvent micPass, &#8220;Element:&#8221;&amp; XmlReader.Name&amp;&#8221;  has attribute(s)&#8221;&amp;&#8221;:&#8221;&amp; XmlReader.AttributeCount,&#8221;"</p>
<p>  If XmlReader.AttributeCount &gt; 0 Then</p>
<p>        while  XmlReader.MoveToNextAttribute()<br />
     fn = XmlReader.Name<br />
     ns = XmlReader.NamespaceURI<br />
      Reporter.ReportEvent micPass,&#8221; Attribute:&#8221;&amp;fn &amp;&#8221;  Value: &#8220;&amp; ns&amp;&#8221; Attribute:&#8221;&amp; XmlReader.GetAttribute(fn, ns),&#8221;"<br />
        wend<br />
     End If<br />
End If<br />
wend<br />
XmlReader.Close()</p>
<p><strong>Author: Mohan Kakarla</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=172&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/11/27/read-xml-using-dotnet-factory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Search for a particular value in Excel</title>
		<link>http://quicktestprofessional.wordpress.com/2008/10/21/search-for-a-particular-value-in-excel-using-find-in-view-menu/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/10/21/search-for-a-particular-value-in-excel-using-find-in-view-menu/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 07:10:00 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[Excel Automation]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[excel and qtp]]></category>
		<category><![CDATA[searc for a string in excel]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/2008/10/21/search-for-a-particular-value-in-excel-using-find-in-view-menu/</guid>
		<description><![CDATA[Set appExcel = CreateObject(&#8220;Excel.Application&#8221;)
appExcel.visible=true
 Set objWorkBook = appExcel.Workbooks.Open (filepath)&#8217;opens the sheet
 Set objSheet = appExcel.Sheets(&#8220;Sheet1&#8243;)&#8217; To select particular sheet
With objSheet.UsedRange &#8216; select the used range in particular sheet
    Set c = .Find (&#8220;nn&#8221;)&#8217; data to find  
For each c in objSheet.UsedRange&#8217; Loop through the used range
 If c=&#8221;nn&#8221; then&#8217; compare with the expected data
            c.Interior.ColorIndex = 40&#8242; make the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=135&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Set appExcel = CreateObject(&#8220;Excel.Application&#8221;)<br />
appExcel.visible=true<br />
 Set objWorkBook = appExcel.Workbooks.Open (filepath)&#8217;opens the sheet</p>
<p> Set objSheet = appExcel.Sheets(&#8220;Sheet1&#8243;)&#8217; To select particular sheet<br />
With objSheet.UsedRange &#8216; select the used range in particular sheet<br />
    Set c = .Find (&#8220;nn&#8221;)&#8217; data to find  <br />
For each c in objSheet.UsedRange&#8217; Loop through the used range<br />
 If c=&#8221;nn&#8221; then&#8217; compare with the expected data<br />
            c.Interior.ColorIndex = 40&#8242; make the gary color if it finds the data<br />
End If<br />
            Set c = .FindNext(c)&#8217; next search<br />
       <br />
next<br />
End With<br />
objWorkBook.save<br />
objWorkBook.close<br />
set appExcel=nothing</p>
<p>Author:Mohan Kakarla</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=135&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/10/21/search-for-a-particular-value-in-excel-using-find-in-view-menu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Upload Attachments To QC</title>
		<link>http://quicktestprofessional.wordpress.com/2008/09/24/upload-attachments-to-qc/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/09/24/upload-attachments-to-qc/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 10:52:48 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[Automating QC]]></category>
		<category><![CDATA[QC-OTA]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=78</guid>
		<description><![CDATA[Function UpLoadAttachmentToQC(FilePath)
Set ObjCurrentTest = QCUtil.CurrentTest.Attachments
Set ObjAttch = ObjCurrentTest.AddItem(Null)
ObjAttch.FileName = FilePath
ObjAttch.Type = 1
ObjAttch.Post
ObjAttch.Refresh
End Function
FilePath=&#8221;C:\abc.vbs&#8221;
Call UpLoadAttachmentToQC(FilePath)
Author: Mohan Kakarla
Source: QC-OTA
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=78&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Function UpLoadAttachmentToQC(FilePath)</p>
<p>Set ObjCurrentTest = QCUtil.CurrentTest.Attachments<br />
Set ObjAttch = ObjCurrentTest.AddItem(Null)<br />
ObjAttch.FileName = FilePath<br />
ObjAttch.Type = 1<br />
ObjAttch.Post<br />
ObjAttch.Refresh</p>
<p>End Function<br />
FilePath=&#8221;C:\abc.vbs&#8221;<br />
Call UpLoadAttachmentToQC(FilePath)</p>
<p><strong>Author: Mohan Kakarla</strong></p>
<p>Source: QC-OTA</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=78&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/09/24/upload-attachments-to-qc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Remove Attachment from QC Through QTP</title>
		<link>http://quicktestprofessional.wordpress.com/2008/09/24/remove-attachment-from-qc-through-qtp/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/09/24/remove-attachment-from-qc-through-qtp/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 10:47:00 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[Automating QC]]></category>
		<category><![CDATA[QC-OTA]]></category>
		<category><![CDATA[QC from QTP]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=75</guid>
		<description><![CDATA[&#8216;The following function will Remove the specified attachment  from the current test of QC when  the file name provided
Function RemoveQCAttachements(NameOfTheFile)
var_count= QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).count
For i= 1 to var_count
 If   QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).Item(2).Name =NameOfTheFile Then
         AttachmentID = QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).Item(1).ID
   QCUtil.CurrentTest.Attachments.RemoveItem(AttachmentID)
 Else
     Reporter.ReportEvent micFail,&#8221;Please provide the valid filename with extention&#8221;,&#8221;Please provide the valid filename with extention&#8221;
 End If
Next
End Function
NameOfTheFile=&#8221;abc.vbs&#8221; &#8216;Provide the file name with extension
call RemoveQCAttachements(NameOfTheFile)
Author:Mohan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=75&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8216;The following function will Remove the specified attachment  from the current test of QC when  the file name provided<br />
Function RemoveQCAttachements(NameOfTheFile)<br />
var_count= QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).count<br />
For i= 1 to var_count</p>
<p> If   QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).Item(2).Name =NameOfTheFile Then<br />
         AttachmentID = QCUtil.CurrentTest.Attachments.NewList(&#8220;&#8221;).Item(1).ID<br />
   QCUtil.CurrentTest.Attachments.RemoveItem(AttachmentID)<br />
 Else<br />
     Reporter.ReportEvent micFail,&#8221;Please provide the valid filename with extention&#8221;,&#8221;Please provide the valid filename with extention&#8221;<br />
 End If</p>
<p>Next<br />
End Function</p>
<p>NameOfTheFile=&#8221;abc.vbs&#8221; &#8216;Provide the file name with extension<br />
call RemoveQCAttachements(NameOfTheFile)</p>
<p><strong>Author:Mohan Kakarla</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=75&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/09/24/remove-attachment-from-qc-through-qtp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Copy an excel sheet to another excel</title>
		<link>http://quicktestprofessional.wordpress.com/2008/06/09/copy-an-excel-sheet-to-another-excel/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/06/09/copy-an-excel-sheet-to-another-excel/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 10:58:19 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[Excel Automation]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[excel copy]]></category>
		<category><![CDATA[excel copy and paste]]></category>
		<category><![CDATA[execl automation]]></category>
		<category><![CDATA[qtp excel copy and paste]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/?p=66</guid>
		<description><![CDATA[Following is the code to copy the conntents of a sheet in one excel to another excel sheet
Set objExcel = CreateObject(&#8220;Excel.Application&#8221;)
objExcel.Visible = True
Set objWorkbook1= objExcel.Workbooks.Open(&#8220;C:\Documents and Settings\mohan.kakarla\Desktop\1.xls&#8221;)
Set objWorkbook2= objExcel.Workbooks.Open(&#8220;C:\Documents and Settings\mohan.kakarla\Desktop\2.xls&#8221;)
objWorkbook1.Worksheets(&#8220;Sheet1&#8243;).UsedRange.Copy
objWorkbook2.Worksheets(&#8220;Sheet1&#8243;).Range(&#8220;A1&#8243;).PasteSpecial Paste =xlValues
objWorkbook1.save
objWorkbook2.save
objWorkbook1.close
objWorkbook2.close
set objExcel=nothing
 Author: Mohan Kakarla
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=66&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Following is the code to copy the conntents of a sheet in one excel to another excel sheet</p>
<p>Set objExcel = CreateObject(&#8220;Excel.Application&#8221;)<br />
objExcel.Visible = True<br />
Set objWorkbook1= objExcel.Workbooks.Open(&#8220;C:\Documents and Settings\mohan.kakarla\Desktop\1.xls&#8221;)<br />
Set objWorkbook2= objExcel.Workbooks.Open(&#8220;C:\Documents and Settings\mohan.kakarla\Desktop\2.xls&#8221;)<br />
objWorkbook1.Worksheets(&#8220;Sheet1&#8243;).UsedRange.Copy<br />
objWorkbook2.Worksheets(&#8220;Sheet1&#8243;).Range(&#8220;A1&#8243;).PasteSpecial Paste =xlValues<br />
objWorkbook1.save<br />
objWorkbook2.save<br />
objWorkbook1.close<br />
objWorkbook2.close<br />
set objExcel=nothing</p>
<p><strong> Author: Mohan Kakarla</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/quicktestprofessional.wordpress.com/66/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/quicktestprofessional.wordpress.com/66/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=66&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/06/09/copy-an-excel-sheet-to-another-excel/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>Prompt Dialog For Password Entry In QTP with help of DotNetFactory</title>
		<link>http://quicktestprofessional.wordpress.com/2008/03/15/prompt-dialog-for-password-entry-in-qtp-with-help-of-dotnetfactory/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/03/15/prompt-dialog-for-password-entry-in-qtp-with-help-of-dotnetfactory/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 11:05:16 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[DotNetFactory]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Prompt Dialog For Password Entry In QTP]]></category>
		<category><![CDATA[Prompt Dialog For Password Entry In QTP with help of Do]]></category>
		<category><![CDATA[QTP]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/2008/03/15/prompt-dialog-for-password-entry-in-qtp-with-help-of-dotnetfactory/</guid>
		<description><![CDATA[The following code popup a dialog with a edit box for a password entry when it run from the QTP
Set objForm = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Form&#8221;, &#8220;System.Windows.Forms&#8221;)
Set objBtn1 = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Button&#8221;, &#8220;System.Windows.Forms&#8221;)
Set objEdit1 = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.TextBox&#8221;, &#8220;System.Windows.Forms&#8221;)
x=80
y=40
Set p1 = DotNetFactory.CreateInstance(&#8220;System.Drawing.Point&#8221;,&#8221;System.Drawing&#8221;,x,y) &#8216;This will provide the locations(X,Y) for the controls
Set lbl= DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Label&#8221;,&#8221;System.Windows.Forms&#8221;)
lbl.Text=&#8221;Enter Password&#8221;
lbl.Location=p1
objForm.Controls.Add(lbl)
p1.Y=CInt(lbl.Height)+40
objEdit1.Location=p1
objForm.Controls.Add(lbl)
objEdit1.UseSystemPasswordChar=true&#8217;To set the password character From system
objForm.Controls.Add(objEdit1)
objBtn1.Text=&#8221;OK&#8221;
p1.Y=Cint(p1.Y)+CInt(objEdit1.Height)+20
objBtn1.Location=p1
objForm.CancelButton=objBtn1
objForm.Controls.Add(objBtn1)
objForm.StartPosition=CenterScreen
objForm.Text=&#8221;Mohan kakarla&#8221;
objForm.ShowDialog
msgbox &#8220;The Password You have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=65&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>The following code popup a dialog with a edit box for a password entry when it run from the QTP</strong></p>
<p>Set objForm = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Form&#8221;, &#8220;System.Windows.Forms&#8221;)<br />
Set objBtn1 = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Button&#8221;, &#8220;System.Windows.Forms&#8221;)<br />
Set objEdit1 = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.TextBox&#8221;, &#8220;System.Windows.Forms&#8221;)<br />
x=80<br />
y=40<br />
Set p1 = DotNetFactory.CreateInstance(&#8220;System.Drawing.Point&#8221;,&#8221;System.Drawing&#8221;,x,y) &#8216;This will provide the locations(X,Y) for the controls<br />
Set lbl= DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.Label&#8221;,&#8221;System.Windows.Forms&#8221;)<br />
lbl.Text=&#8221;Enter Password&#8221;<br />
lbl.Location=p1<br />
objForm.Controls.Add(lbl)<br />
p1.Y=CInt(lbl.Height)+40<br />
objEdit1.Location=p1<br />
objForm.Controls.Add(lbl)</p>
<p>objEdit1.UseSystemPasswordChar=true&#8217;To set the password character From system</p>
<p>objForm.Controls.Add(objEdit1)<br />
objBtn1.Text=&#8221;OK&#8221;</p>
<p>p1.Y=Cint(p1.Y)+CInt(objEdit1.Height)+20<br />
objBtn1.Location=p1</p>
<p>objForm.CancelButton=objBtn1</p>
<p>objForm.Controls.Add(objBtn1)</p>
<p>objForm.StartPosition=CenterScreen<br />
objForm.Text=&#8221;Mohan kakarla&#8221;<br />
objForm.ShowDialog</p>
<p>msgbox &#8220;The Password You have Entered Is: &#8220;&amp;objEdit1.Text</p>
<p><strong>Author: Mohan Kumar Kakarla</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/quicktestprofessional.wordpress.com/65/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/quicktestprofessional.wordpress.com/65/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=65&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/03/15/prompt-dialog-for-password-entry-in-qtp-with-help-of-dotnetfactory/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenFileDialog In QTP with help of DotNetFactory</title>
		<link>http://quicktestprofessional.wordpress.com/2008/03/15/openfiledialog-in-qtp-with-help-of-dotnetfactory/</link>
		<comments>http://quicktestprofessional.wordpress.com/2008/03/15/openfiledialog-in-qtp-with-help-of-dotnetfactory/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 11:03:26 +0000</pubDate>
		<dc:creator>quicktestprofessional</dc:creator>
				<category><![CDATA[DotNetFactory]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[OpenFileDialog In QTP]]></category>
		<category><![CDATA[QTP]]></category>

		<guid isPermaLink="false">http://quicktestprofessional.wordpress.com/2008/03/15/openfiledialog-in-qtp-with-help-of-dotnetfactory/</guid>
		<description><![CDATA[ Set fd = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.OpenFileDialog&#8221;, &#8220;System.Windows.Forms&#8221;)
fd.InitialDirectory=&#8221;c:\\&#8221;
fd.Filter=&#8221;txt files (*.txt)&#124;*.txt &#124;All files (*.*) &#124;*.*&#8221;
fd.RestoreDirectory=true
fd.FilterIndex=2
fd.ShowDialog()
msgbox fd.FileName
Author: Mohan Kakarla
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=64&subd=quicktestprofessional&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Set fd = DotNetFactory.CreateInstance(&#8220;System.Windows.Forms.OpenFileDialog&#8221;, &#8220;System.Windows.Forms&#8221;)<br />
fd.InitialDirectory=&#8221;c:\\&#8221;<br />
fd.Filter=&#8221;txt files (*.txt)|*.txt |All files (*.*) |*.*&#8221;<br />
fd.RestoreDirectory=true<br />
fd.FilterIndex=2<br />
fd.ShowDialog()<br />
msgbox fd.FileName</p>
<p><strong>Author: Mohan Kakarla</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/quicktestprofessional.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/quicktestprofessional.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicktestprofessional.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicktestprofessional.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicktestprofessional.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicktestprofessional.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicktestprofessional.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicktestprofessional.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicktestprofessional.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicktestprofessional.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicktestprofessional.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicktestprofessional.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicktestprofessional.wordpress.com&blog=2870999&post=64&subd=quicktestprofessional&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quicktestprofessional.wordpress.com/2008/03/15/openfiledialog-in-qtp-with-help-of-dotnetfactory/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3a0f70d1b7bed312b512953a00a6c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Quick Test Professional</media:title>
		</media:content>
	</item>
	</channel>
</rss>