<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>AutomationChinnu</title>
	<atom:link href="http://chinnu9999.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chinnu9999.wordpress.com</link>
	<description>Consulting for Automation</description>
	<lastBuildDate>Sun, 22 Jan 2012 15:16:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='chinnu9999.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>AutomationChinnu</title>
		<link>http://chinnu9999.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chinnu9999.wordpress.com/osd.xml" title="AutomationChinnu" />
	<atom:link rel='hub' href='http://chinnu9999.wordpress.com/?pushpress=hub'/>
		<item>
		<title>To Close all Internet Explorers</title>
		<link>http://chinnu9999.wordpress.com/2011/02/17/to-close-all-internet-explorers/</link>
		<comments>http://chinnu9999.wordpress.com/2011/02/17/to-close-all-internet-explorers/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 17:44:55 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=51</guid>
		<description><![CDATA[Before going to run your script needs to close all IEs,it helps you to work with QTP without any object /browser identification problems. just have a look here, Public function closeAllBrowsers() Dim qtStartTime, ieStartTime, strComputer, objWMIService,ieProcessList,qtProcessList strComputer = &#8220;.&#8221; Set objWMIService = GetObject(&#8220;winmgmts:\\&#8221; &#38; strComputer &#38; &#8220;\root\cimv2&#8243;) Set ieProcessList = objWMIService.ExecQuery (&#8220;Select * from Win32_Process [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=51&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before going to run your script needs to close all IEs,it helps you to work with QTP without any object /browser identification problems.</p>
<p>just have a look here,</p>
<p><strong>Public function closeAllBrowsers()</strong><br />
Dim qtStartTime, ieStartTime, strComputer, objWMIService,ieProcessList,qtProcessList</p>
<p>strComputer = &#8220;.&#8221;<br />
Set objWMIService = GetObject(&#8220;winmgmts:\\&#8221; &amp; strComputer &amp; &#8220;\root\cimv2&#8243;)</p>
<p>Set ieProcessList = objWMIService.ExecQuery (&#8220;Select * from Win32_Process Where Name = &#8216;iexplore.exe&#8217;&#8221;) <span style="color:#0000ff;"><em>&#8216;<span style="color:#008000;">to get all list  of IE  which are in process</span></em></span><br />
Set qtpProcessList = objWMIService.ExecQuery (&#8220;Select * from Win32_Process Where Name = &#8216;qtpro.exe&#8217;&#8221;)<span style="color:#008000;"><em> &#8216;To get all list of qtp which are in process</em></span></p>
<p>For Each qtpProcess in qtpProcessList<br />
dtStartTime = qtProcess.CreationDate    <em><span style="color:#0000ff;"> &#8216;<span style="color:#008000;">Date Time Month at the time of creation</span></span></em><br />
qtStartTime = WMIDateStringToDate(dtmStartTime) &#8216;Returns qtp start time<br />
Next</p>
<p>For Each ieProcess in ieProcessList<br />
dtStartTime = ieProcess.CreationDate<br />
ieStartTime = WMIDateStringToDate(dtmStartTime) <span style="color:#008000;"><em> &#8216;Returns IE start time</em></span></p>
<p>If ieStartTime &gt; qtStartTime Then    <em><span style="color:#008000;">&#8216;If any IE browsers opened (process running) before QTP  process then it will close all</span></em><br />
SystemUtil.CloseProcessById ieProcess.processid<br />
End If<br />
Next<br />
<strong>End Function</strong></p>
<p><span style="color:#008000;"><em>&#8216;To get Process time</em></span><br />
<strong>Function WMIDateStringToDate(dtStart)</strong><br />
WMIDateStringToDate = CDate(Mid(dtmStart, 5, 2) &amp; &#8220;/&#8221; &amp; Mid(dtmStart, 7, 2) &amp; &#8220;/&#8221; &amp; Left(dtmStart, 4) &amp; &#8221; &#8221; &amp; Mid (dtmStart, 9, 2) &amp; &#8220;:&#8221; &amp; Mid(dtmStart, 11, 2) &amp; &#8220;:&#8221; &amp; Mid(dtmStart, 13, 2))<br />
<strong>End Function</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=51&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2011/02/17/to-close-all-internet-explorers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>Locale Settings</title>
		<link>http://chinnu9999.wordpress.com/2011/02/17/locale-settings/</link>
		<comments>http://chinnu9999.wordpress.com/2011/02/17/locale-settings/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 17:21:17 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=47</guid>
		<description><![CDATA[We can set as per our local time/zone,time formats&#8230; 1.SetLocale(lcid) a.if lcid=0 then the locale is set to match the current system setting Msgbox (SetLocale(0))&#8211;&#62;1033 b.Msgbox (SetLocale(&#8220;en-gb&#8221;))&#8211;&#62;1033 c.SetLocale(currentLocale)--&#62;1033 Note:1033 denotes &#8220;English &#8211; United States&#8221; Zone by using this u can customize your time formats,zones,etc &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=47&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We can set as per our local time/zone,time formats&#8230;</p>
<p>1.SetLocale(<em>lcid</em>)</p>
<p>a.if <em>lcid</em>=0 then the locale is set to match the current system setting</p>
<p>Msgbox (SetLocale(0))&#8211;&gt;1033</p>
<p>b.Msgbox (SetLocale(&#8220;en-gb&#8221;))&#8211;&gt;1033</p>
<p>c.<code><strong>SetLocale(</strong></code>currentLocale<code><strong>)--&gt;1033</strong></code></p>
<p><strong>Note:1033 denotes </strong>&#8220;English &#8211; United States&#8221; Zone</p>
<p>by using this u can customize your time formats,zones,etc</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=47&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2011/02/17/locale-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>To Get repeat sequences of random numbers</title>
		<link>http://chinnu9999.wordpress.com/2011/02/17/to-get-repeat-sequences-of-random-numbers/</link>
		<comments>http://chinnu9999.wordpress.com/2011/02/17/to-get-repeat-sequences-of-random-numbers/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 16:47:06 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=45</guid>
		<description><![CDATA[Suppose if you want to test your application functionality with same repeated sequence of random number then use Rnd(-1) here use Rnd argument number as -1 Script: Dim MyValue, Response Randomize   &#8216; Initialize random-number generator. Do Until Response = vbNo MyValue = Int((9 * Rnd(-1)) + 1)   &#8216; Generate random value between 1 and 9. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=45&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suppose if you want to test your application functionality with same repeated sequence of random number then use Rnd(-1)</p>
<p>here use Rnd argument number as -1</p>
<p>Script:</p>
<p>Dim MyValue, Response<br />
Randomize   &#8216; Initialize random-number generator.<br />
Do Until Response = vbNo<br />
MyValue = Int((9 * Rnd(-1)) + 1)   &#8216; Generate random value between 1 and 9.<br />
MsgBox MyValue<br />
Response = MsgBox (&#8220;Is it same that prev value &#8220;, vbYesNo)<br />
Loop</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=45&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2011/02/17/to-get-repeat-sequences-of-random-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>Find YOur Zone Time</title>
		<link>http://chinnu9999.wordpress.com/2011/02/05/find-your-zone-time/</link>
		<comments>http://chinnu9999.wordpress.com/2011/02/05/find-your-zone-time/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 07:06:03 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=40</guid>
		<description><![CDATA['If you want find specific local time zone. Function Local_TimeZone() Dim strComputer,oWMIService,oComputer, allColComputer strComputer = “.” Set oWMIService = GetObject(“winmgmts:” _ &#38; “{impersonationLevel=impersonate}!\\” _ &#38; strComputer &#38; “\root\cimv2″) Set allColComputer = oWMIService.ExecQuery _ (“Select * from Win32_TimeZone”) For Each oComputer in allColComputer msgbox oComputer.Description Exit For Next Set oComputer = Nothing Set allColComputer = Nothing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=40&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<pre>
<h2><span style="text-decoration:underline;">'If you want find specific local time zone.</span>

<strong><span style="color:#000000;">Function Local_TimeZone()</span></strong></h2>
</pre>
</div>
<address><span style="color:#000000;">Dim strComputer,oWMIService,oComputer, allColComputer</span></address>
<address><span style="color:#000000;">strComputer = “.”</span></address>
<address><span style="color:#000000;">Set oWMIService = GetObject(“winmgmts:” _</span></address>
<address><span style="color:#000000;">&amp; “{impersonationLevel=impersonate}!\\” _</span></address>
<address><span style="color:#000000;">&amp; strComputer &amp; “\root\cimv2″)</span></address>
<address><span style="color:#000000;">Set allColComputer = oWMIService.ExecQuery _</span></address>
<address><span style="color:#000000;">(“Select * from Win32_TimeZone”)</span></address>
<address><span style="color:#000000;">For Each oComputer in allColComputer </span></address>
<address><span style="color:#000000;">msgbox oComputer.Description</span></address>
<address><span style="color:#000000;">Exit For</span></address>
<address><span style="color:#000000;">Next</span></address>
<address><span style="color:#000000;">Set oComputer = Nothing</span></address>
<address><span style="color:#000000;">Set allColComputer = Nothing</span></address>
<address><span style="color:#000000;">Set oWMIService = Nothing</span></address>
<p><strong><span style="color:#000000;">End Functio</span><span style="color:#008000;"><strong><span style="color:#000000;">n</span></strong><br />
</span></strong></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=40&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2011/02/05/find-your-zone-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>How to lock your system automatically</title>
		<link>http://chinnu9999.wordpress.com/2011/02/05/how-to-lock-your-system-automatically/</link>
		<comments>http://chinnu9999.wordpress.com/2011/02/05/how-to-lock-your-system-automatically/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 06:55:30 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=37</guid>
		<description><![CDATA[﻿&#8217;If you want lock your sustem once your script running is done automatically just you call the below function. &#8216;If you want lick ur system(for manual users)save this function in a .VBS file and then give one double click.﻿ Function Lock_Mysystem() Dim oSys,Syscmd Set oSys = CreateObject("WScript.Shell") Syscmd = "%windir%\SYSTEM32\rundll32.exe user32.dll,LockWorkStation" oSys.Run Syscmd, 0, False [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=37&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><em>﻿&#8217;If you want lock your sustem once your script running is done automatically just you call the below function.</em></strong></p>
<p><strong><em>&#8216;If you want lick ur system(for manual users)save this function in a .VBS file and then give one double click.﻿</em></strong></p>
<div>
<div>
<pre><span style="color:#000000;"><strong>Function Lock_Mysystem()
</strong>
Dim oSys,Syscmd

Set oSys = CreateObject("WScript.Shell")

Syscmd = "%windir%\SYSTEM32\rundll32.exe user32.dll,LockWorkStation"

oSys.Run Syscmd, 0, False
</span>
<strong><span style="color:#000000;">End Function</span><em>
------------------------------------------------</em></strong></pre>
<pre><strong><em>Lock_Mysystem()'to call the function</em></strong></pre>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=37&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2011/02/05/how-to-lock-your-system-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>Customize your excel</title>
		<link>http://chinnu9999.wordpress.com/2010/10/29/customize-your-excel/</link>
		<comments>http://chinnu9999.wordpress.com/2010/10/29/customize-your-excel/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 18:33:43 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
		
		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=26</guid>
		<description><![CDATA[Function ExcelCustomization(resultsPath,Filename,nameSheet, rvalue) Set ExcelFile = CreateObject(&#8220;Excel.Application&#8221;) Set wb = ExcelFile.Workbooks.Open (resultsPath &#38; Filename&#38;&#8221;.xls&#8221;) &#8216;To  open  the  existing  work book ExcelFile.Visible=False wb.Sheets(nameSheet).select                                                                                                                                                                                                                  &#8216;To select  specific XL sheet RCols = wb.Sheets(nameSheet).UsedRange.Columns.Count  &#8216;To get  the  number of  columns used Rrows=wb.Sheets(nameSheet).UsedRange.Rows.Count    &#8216;To get  the  number of   rows used For cl=1 to RCols wb. Sheets(nameSheet).Cells(1,cl).Interior.ColorIndex = 53  &#8216;To set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=26&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Function ExcelCustomization(resultsPath,Filename,nameSheet, rvalue)</p>
<p>Set ExcelFile = CreateObject(&#8220;Excel.Application&#8221;)<br />
Set wb = ExcelFile.Workbooks.Open (resultsPath &amp; Filename&amp;&#8221;.xls&#8221;) &#8216;To  open  the  existing  work book</p>
<p>ExcelFile.Visible=False<br />
wb.Sheets(nameSheet).select                                                                                                                                                                                                                  &#8216;To select  specific XL sheet<br />
RCols = wb.Sheets(nameSheet).UsedRange.Columns.Count  &#8216;To get  the  number of  columns used<br />
Rrows=wb.Sheets(nameSheet).UsedRange.Rows.Count    &#8216;To get  the  number of   rows used<br />
For cl=1 to RCols<br />
wb. Sheets(nameSheet).Cells(1,cl).Interior.ColorIndex = 53  &#8216;To set the color to the interior  of  the XLSheet<br />
wb. Sheets(nameSheet).Cells(1,cl).Font.ColorIndex = 19   &#8216;To set the color to the fonts  of  the XLSheet<br />
wb. Sheets(nameSheet).Cells(1,cl).Font.Bold=True<br />
wb. Sheets(nameSheet).Columns(cl).Autofit  &#8216;To set  the  columns  as autofit<br />
wb. Sheets(nameSheet).Cells(1,cl).Borders(1).LineStyle = 1  &#8216;To Set the Borders<br />
wb. Sheets(nameSheet).Cells(1,cl).Borders(2).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(1,cl).Borders(3).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(1,cl).Borders(4).LineStyle = 1</p>
<p>For j=2 to Rrows<br />
rvalue = wb.Sheets(nameSheet).cells(j,cl).Value<br />
If StrComp(rvalue,&#8221;PASS&#8221;,1)=0 Then<br />
Status=&#8221;"<br />
wb. Sheets(nameSheet).Cells(j,cl).Font.ColorIndex=50<br />
wb. Sheets(nameSheet).Cells(j,cl).Font.Bold=True<br />
wb. Sheets(nameSheet).Columns(cl).Autofit<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(1).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(2).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(3).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(4).LineStyle = 1<br />
ElseIf StrComp(rvalue,&#8221;FAIL&#8221;,1)=0 Then<br />
Status=&#8221;"<br />
wb. Sheets(nameSheet).Cells(j,cl).Font.ColorIndex=3<br />
wb. Sheets(nameSheet).Cells(j,cl).Font.Bold=True<br />
wb. Sheets(nameSheet).Columns(cl).Autofit<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(1).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(2).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(3).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(4).LineStyle = 1<br />
End If<br />
wb. Sheets(nameSheet).Cells(j,cl).Interior.ColorIndex = 19<br />
wb. Sheets(nameSheet).Columns(cl).Autofit<br />
&#8216;wb. Sheets(nameSheet).Cells(j,cl).Font.Bold=100<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(1).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(2).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(3).LineStyle = 1<br />
wb. Sheets(nameSheet).Cells(j,cl).Borders(4).LineStyle = 1<br />
Next<br />
Next<br />
wb.Sheets(&#8220;Con&#8221;).select<br />
CCols = wb.Sheets(&#8220;Con&#8221;).UsedRange.Columns.Count<br />
Crows=wb.Sheets(&#8220;Con&#8221;).UsedRange.rows.count</p>
<p>For ccl=1 to CCols<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Interior.ColorIndex = 53<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Font.ColorIndex = 19<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Font.Bold=True<br />
wb. Sheets(&#8220;Con&#8221;).Columns(ccl).Autofit                                                                                                                                                                                                &#8216;Set Column width<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Borders(1).LineStyle = 1    &#8216;To Set the Borders<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Borders(2).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Borders(3).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(1,ccl).Borders(4).LineStyle = 1</p>
<p>For crc=2 to crowCount+1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Interior.ColorIndex = 19<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Font.Bold=200<br />
wb. Sheets(&#8220;Con&#8221;).Columns(ccl).Autofit<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Borders(1).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Borders(2).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Borders(3).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(crc,ccl).Borders(4).LineStyle = 1<br />
If StrComp(Environment.Value(&#8220;EOT&#8221;),&#8221;TT&#8221;,1)=0 Then<br />
For rc= crowCount+4 to Crows<br />
For cc=1 to 2<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Interior.ColorIndex = 19<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Font.ColorIndex = 53<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Font.Bold=200<br />
wb. Sheets(&#8220;Con&#8221;).Columns(cc).Autofit<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Borders(1).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Borders(2).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Borders(3).LineStyle = 1<br />
wb. Sheets(&#8220;Con&#8221;).Cells(rc,cc).Borders(4).LineStyle = 1<br />
Next<br />
Next<br />
End If<br />
Next<br />
Next<br />
wb.Save<br />
ExcelFile.Quit<br />
Set ExcelFile = nothing<br />
Set wb= nothing<br />
Set ExcelSheet = nothing<br />
End If</p>
<p>End Function</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=26&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2010/10/29/customize-your-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get a Specific string from an array</title>
		<link>http://chinnu9999.wordpress.com/2010/06/07/how-to-get-a-specific-string-from-an-array/</link>
		<comments>http://chinnu9999.wordpress.com/2010/06/07/how-to-get-a-specific-string-from-an-array/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:34:45 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=18</guid>
		<description><![CDATA[Suppose if you want to get a specific string within an array that you don&#8217;t know on which position it is located,in this case we can go for filter condition. Filter function help you to filter a specific sub string in a string Return Value: Returns a zero-based array containing a subset of a string [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=18&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suppose if you want to get a specific string within an array that you don&#8217;t know on which position it is located,in this case we can go for filter condition.</p>
<p>Filter function help you to filter a specific sub string in a string</p>
<p><strong>Return Value:</strong></p>
<p>Returns a zero-based array containing a subset of a string array based on a  specified filter criteria.</p>
<pre><span style="color:#ff0000;"><strong>Filter(<a>InputStrings</a></strong><strong>, <a>Value</a>[</strong><strong>, <a>Include</a>[</strong><strong>, <a>Compare</a>]]</strong></span><strong><span style="color:#ff0000;">)</span></strong>
Arguments:<em>
InputStrings</em> :
Required. One-dimensional array of strings to be searched. <em>
Value</em> :
Required. String to search for. <em>
Include</em> :
Optional. Boolean value indicating whether to return substrings that include  or exclude <em>Value</em>. If <em>Include</em> is <strong>True</strong>, <strong>Filter</strong> returns  the subset of the array that contains <em>Value</em> as a substring. If <em>Include </em>is <strong>False</strong>, <strong>Filter</strong> returns the subset of the array that does not  contain <em>Value</em> as a substring. <em>
Compare</em> :
Optional. Numeric/Text comparision
<strong>Example:</strong>
Dim MyIndex
Dim MyArray (3)
MyArray(0) = "Sunday"
MyArray(1) = "Monday"
MyArray(2) = "Tuesday"
MyIndex = <code><strong>Filter(</strong></code>MyArray<code><strong>,</strong></code> "Mon"<code><strong>)</strong></code> ' MyIndex(0) contains "Monday".
Remarks:<span style="color:#000000;">If no matches of <em>Value</em> are found within <em>InputStrings</em>,  <strong>Filter</strong> returns an empty array. An error occurs if <em>InputStrings</em> is  <strong>Null</strong> or is not a one-dimensional array.
</span><span style="color:#000000;">The array returned by the <strong>Filter</strong> function contains only enough  elements to contain the number of matched items.</span>
<pre><span style="color:#000000;">Thanks,</span>
<span style="color:#000000;">Chinnu
</span>
</pre>
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=18&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2010/06/07/how-to-get-a-specific-string-from-an-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
		<item>
		<title>Get Proper/Specific Text from a String</title>
		<link>http://chinnu9999.wordpress.com/2010/06/01/get-properspecific-text-from-a-string/</link>
		<comments>http://chinnu9999.wordpress.com/2010/06/01/get-properspecific-text-from-a-string/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:30:37 +0000</pubDate>
		<dc:creator>chinnu9999</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://chinnu9999.wordpress.com/?p=13</guid>
		<description><![CDATA[1. To get Position of 1st occurence of the string within the string mvar=Instr(&#8220;VB Script is fun!&#8221;,&#8221;is&#8221;) msgbox(mvar)&#8217;returns 1st occurence position of the string/letter within another string 2.To get specific length of the string MyVar = Mid(&#8220;VB Script is fun!&#8221;, mvar, 2) msgbox(MyVar)  &#8216; Returns &#8221; is&#8221; 3.Suppose if you want to get specific text [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=13&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#ff0000;">1. To get Position of 1st occurence of the string within the string</span></strong></p>
<p><strong><span style="color:#0000ff;">mvar=Instr(&#8220;VB Script is fun!&#8221;,&#8221;is&#8221;)</span></strong></p>
<p>msgbox(mvar)&#8217;returns 1st occurence position of the string/letter within another string</p>
<p><strong><span style="color:#ff0000;">2.To get specific length of the string</span></strong></p>
<p><strong><span style="color:#0000ff;">MyVar = Mid(&#8220;VB Script is fun!&#8221;, mvar, 2)</span></strong><br />
msgbox(MyVar)  &#8216; Returns &#8221; is&#8221;</p>
<p>3.Suppose if you want to get specific text from a string,when you know the required string within another string but you dont know where it is in.</p>
<p>In this case you can use the following method to get directly:</p>
<p><span style="color:#0000ff;"><strong>mvar=Mid(&#8220;VB Script is fun!&#8221;,Instr(&#8220;VB Script is fun!&#8221;,&#8221;is&#8221;),2)</strong></span><br />
msgbox(mvar)  &#8216; Returns  &#8220;is&#8221;</p>
<p>Example: Try this &#8220;I want to be a good quality engineer&#8221; find the specific text &#8220;quality&#8221;,whether it is presented in the given string or not? and get the same</p>
<p>Thanks,</p>
<p>Chinnu</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chinnu9999.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chinnu9999.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chinnu9999.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chinnu9999.wordpress.com&amp;blog=13367701&amp;post=13&amp;subd=chinnu9999&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chinnu9999.wordpress.com/2010/06/01/get-properspecific-text-from-a-string/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b87b3235c965ba59494bcff4597012ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chinnu9999</media:title>
		</media:content>
	</item>
	</channel>
</rss>
