<?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/"
	>

<channel>
	<title>TechieDrill &#187; Statement</title>
	<atom:link href="http://techiedrill.com/tag/statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiedrill.com</link>
	<description>Your World Of Technical Tutorials</description>
	<lastBuildDate>Tue, 05 Jan 2010 16:50:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javascript: With Statement</title>
		<link>http://techiedrill.com/2009/11/javascript-with-statement/</link>
		<comments>http://techiedrill.com/2009/11/javascript-with-statement/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:59:03 +0000</pubDate>
		<dc:creator>karnamrajesh</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Statement]]></category>
		<category><![CDATA[with]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=405</guid>
		<description><![CDATA[The with statement allows you to access the methods and properties of an object without having
to specify the name of the object on every line.Without the with statement, you will always need to
specify the name of the object you are working on next to every property or method you wish
to access:
With statement allows to access [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">The with statement allows you to access the methods and properties of an object without having</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">to specify the name of the object on every line.Without the with statement, you will always need to</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">specify the name of the object you are working on next to every property or method you wish</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">to access:</div>
<p>With statement allows to access properties of an object without specifying the object with each and every property. By specifying the keyword WITH with the object all the properties of that object can be accessed without specifying the object name for each and every property</p>
<p><strong>For instance</strong></p>
<p><em>with (document){</em></p>
<p><em> write(&#8221;This is line 1 &lt;BR&gt;&#8221;);</em></p>
<p><em> write(&#8221;This is line 2 &lt;BR&gt;&#8221;);</em></p>
<p><em><br />
</em></p>
<p><em> write(&#8221;This is line 3 &lt;BR&gt;&#8221;);</em></p>
<p><em> write(&#8221;This is line 4 &lt;BR&gt;&#8221;);</em></p>
<p><em>}</em></p>
<p><strong>NOTE:<em> </em></strong></p>
<p><em> </em></p>
<p><em></p>
<blockquote><p>The objects set with WITH keyword has scope only inside the curly braces. Objects outside the braces needs to be explicitly mentioned with the object and property names</p></blockquote>
<p></em></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-with-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 10 &#8211; If Else If Else Statement</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-10-if-else-if-else-statement/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-10-if-else-if-else-statement/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:03:49 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[If Else If Else]]></category>
		<category><![CDATA[If Else If Else Statement]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Statement]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=216</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on If Else If Else Statement.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/UogH74LirBc&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UogH74LirBc&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=UogH74LirBc">Click Here</a></p>
<p><strong>Tutorial on If Else If Else Statement.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-10-if-else-if-else-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 9 &#8211; If Else Statement</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-9-if-else-statement/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-9-if-else-statement/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:02:03 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[If Else]]></category>
		<category><![CDATA[If Else Statement]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Statement]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=214</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on If Else Statement.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/SyHh5tu3Lfk&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SyHh5tu3Lfk&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=SyHh5tu3Lfk">Click Here</a></p>
<p>Tutorial on If Else Statement.</p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-9-if-else-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 8 &#8211; If Statement</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-8-if-statement/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-8-if-statement/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:59:54 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[If]]></category>
		<category><![CDATA[If Statement]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Statement]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=212</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on If Statement.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/UZKnICO3i6U&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UZKnICO3i6U&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=UZKnICO3i6U">Click Here</a></p>
<p><strong>Tutorial on If Statement.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-8-if-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
