<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>ForDevs</title>
	
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<pubDate>Mon, 09 Nov 2009 06:47:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/fordevs" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">fordevs</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How To Call a Button Click From Another Button in c#</title>
		<link>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html</link>
		<comments>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:47:34 +0000</pubDate>
		<dc:creator>joy</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[WPF]]></category>

		<category><![CDATA[Button]]></category>

		<category><![CDATA[Button Click]]></category>

		<category><![CDATA[Button Event]]></category>

		<category><![CDATA[C# button]]></category>

		<category><![CDATA[Call Button]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=619</guid>
		<description><![CDATA[If there is a requirement for calling a button click event from another button in c#, there is a easy way to do.We just need to call the PerformClick Method of the button to be fired.

private void button1_Click&#40;object sender, EventArgs e&#41;
&#123;
    button2.PerformClick&#40;&#41;;
&#125;
&#160;
private void button2_Click&#40;object sender, EventArgs e&#41;
&#123;
    System.Windows.Forms.MessageBox.Show&#40;&#34;I am [...]]]></description>
			<content:encoded><![CDATA[<p>If there is a requirement for calling a button click event from another button in c#, there is a easy way to do.We just need to call the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.button.performclick.aspx">PerformClick Method</a> of the button to be fired.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> button1_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    button2.<span style="color: #0000FF;">PerformClick</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> button2_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Windows</span>.<span style="color: #0000FF;">Forms</span>.<span style="color: #0000FF;">MessageBox</span>.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;I am called from button1&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Java 1.5 features</title>
		<link>http://www.fordevs.com/2009/10/java-15-features.html</link>
		<comments>http://www.fordevs.com/2009/10/java-15-features.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 02:59:33 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=611</guid>
		<description><![CDATA[ 

Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion). 
Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities.
Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span> </span></p>
<ul>
<li><span><span><strong>Generics</strong>: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion).</span></span><span><span> </span></span></li>
<li><span><strong>Metadata</strong>: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities.</span></li>
<li><span><strong>Autoboxing/unboxing</strong>: automatic conversions between primitive types (such as int) and primitive wrapper classes (such as integer).</span></li>
<li><span> <strong>Enumerations</strong>: the enum keyword creates a typesafe, ordered list of values (such as day.monday, day.tuesday, etc.). Previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern).</span></li>
<li><span> <strong>Swing</strong>: new skinnable look and feel, called synth.</span></li>
<li><span><strong>Var args</strong>: the last parameter of a method can now be declared using a type name followed by three dots (e.g. Void drawtext(string&#8230; Lines)). In the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type.</span></li>
<li><span><strong>Enhanced for each loop</strong>: the for loop syntax is extended with special syntax for iterating over each member of either an array or any iterable, such as the standard collection classesfix the previously broken semantics of the java memory model, which defines how threads interact through memory.</span></li>
<li><span><strong>Automatic stub generation</strong></span><span> for rmi objects.</span></li>
<li><span><strong>Static imports concurrency utilities</strong> in package java.util.concurrent.</span></li>
<li><span><strong>Scanner class for parsing data </strong>from various input streams and buffers.</span></li>
<li><strong>Assertions</strong></li>
<li><strong>StringBuilder</strong> class (in java.lang package)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/10/java-15-features.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to Get the Base URL in Flash ActionScript 2 and ActionScript 3?</title>
		<link>http://www.fordevs.com/2009/10/how-to-get-the-base-url-in-flash-actionscript-2-and-actionscript-3.html</link>
		<comments>http://www.fordevs.com/2009/10/how-to-get-the-base-url-in-flash-actionscript-2-and-actionscript-3.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:12:57 +0000</pubDate>
		<dc:creator>praveen</dc:creator>
		
		<category><![CDATA[ActionScript 2]]></category>

		<category><![CDATA[ActionScript 3]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[Base url]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=594</guid>
		<description><![CDATA[Step 1
Create a flash project and set the Publish Settings’ ActionScript version as 2.
Step 2
Create two dynamic texts, named as txtFullUrl and txtBaseUrl.

Step 3

Create another layer; in first frame of that layer write the following ActionScript code.
Action Script 2 Code 
 



function GetTheBaseUrl&#40;&#41; &#123;
var RootFullUrl = _root._url;
txtFullUrl.text = RootFullUrl;
var lastSlashIndex:Number = RootFullUrl.lastIndexOf&#40;&#34;/&#34;&#41;;
var DriveIndex:Number = RootFullUrl.indexOf&#40;&#34;&#124;&#34;&#41;;
&#160;
if [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 1</strong></span></span></p>
<p>Create a flash project and set the Publish Settings’ ActionScript version as 2.</p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 2</strong></span></span></p>
<p>Create two dynamic texts, named as txtFullUrl and txtBaseUrl.</p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong><img class="alignnone size-full wp-image-596" title="baseurl01" src="http://www.fordevs.com/wp-content/uploads/2009/10/baseurl01.jpg" alt="baseurl01" width="650" height="438" /></strong></span></span></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 3<br />
</strong></span></span></p>
<p>Create another layer; in first frame of that layer write the following ActionScript code.</p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Action Script 2 Code </strong></span></span></p>
<p><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML /> <o:AllowPNG /> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]></p>
<p><mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --></p>
<p><!--[endif]--></p>
<p><img class="alignnone size-full wp-image-598" title="baseurl02" src="http://www.fordevs.com/wp-content/uploads/2009/10/baseurl02.jpg" alt="baseurl02" width="650" height="438" /></p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">function GetTheBaseUrl<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
var RootFullUrl <span style="color: #008000;">=</span> _root._url<span style="color: #008000;">;</span>
txtFullUrl.<span style="color: #0000FF;">text</span> <span style="color: #008000;">=</span> RootFullUrl<span style="color: #008000;">;</span>
var lastSlashIndex<span style="color: #008000;">:</span>Number <span style="color: #008000;">=</span> RootFullUrl.<span style="color: #0000FF;">lastIndexOf</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
var DriveIndex<span style="color: #008000;">:</span>Number <span style="color: #008000;">=</span> RootFullUrl.<span style="color: #0000FF;">indexOf</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;|&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>DriveIndex<span style="color: #008000;">&gt;=</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
baseUrl <span style="color: #008000;">=</span> RootFullUrl.<span style="color: #0000FF;">substring</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span>, DriveIndex<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
baseUrl <span style="color: #008000;">+=</span> <span style="color: #666666;">&quot;:&quot;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span> <span style="color: #0600FF;">else</span> <span style="color: #000000;">&#123;</span>
baseUrl <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
baseUrl <span style="color: #008000;">+=</span> RootFullUrl.<span style="color: #0000FF;">substring</span><span style="color: #000000;">&#40;</span>DriveIndex<span style="color: #008000;">+</span><span style="color: #FF0000;">1</span>, lastSlashIndex<span style="color: #008000;">+</span><span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
txtBaseUrl.<span style="color: #0000FF;">text</span> <span style="color: #008000;">=</span> baseUrl<span style="color: #008000;">;</span>
<span style="color: #0600FF;">return</span> baseUrl<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
var BaseURL<span style="color: #008000;">:</span><span style="color: #FF0000;">String</span><span style="color: #008000;">=</span> GetTheBaseUrl<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Action Script 3 Code</strong></span></span></p>
<p><img class="alignnone size-full wp-image-597" title="baseurl03" src="http://www.fordevs.com/wp-content/uploads/2009/10/baseurl03.jpg" alt="baseurl03" width="650" height="438" /></p>
<p><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML /> <o:AllowPNG /> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]></p>
<p><mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --></p>
<p><!--[endif]--></p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">txtFullUrl.<span style="color: #0000FF;">text</span> <span style="color: #008000;">=</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">loaderInfo</span>.<span style="color: #0000FF;">url</span><span style="color: #008000;">;</span>
&nbsp;
var FullUrl<span style="color: #008000;">:</span><span style="color: #FF0000;">String</span> <span style="color: #008000;">=</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">root</span>.<span style="color: #0000FF;">loaderInfo</span>.<span style="color: #0000FF;">url</span><span style="color: #008000;">;</span>
var lastSlashIndex<span style="color: #008000;">:</span>Number <span style="color: #008000;">=</span> FullUrl.<span style="color: #0000FF;">lastIndexOf</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
var DriveSepIndex<span style="color: #008000;">:</span>Number <span style="color: #008000;">=</span> FullUrl.<span style="color: #0000FF;">indexOf</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;|&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
var baseUrl<span style="color: #008000;">:</span>String<span style="color: #008000;">;</span>
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>DriveSepIndex <span style="color: #008000;">&gt;=</span> <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
baseUrl <span style="color: #008000;">=</span> FullUrl.<span style="color: #0000FF;">substring</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span>, DriveSepIndex<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
baseUrl <span style="color: #008000;">+=</span> <span style="color: #666666;">&quot;:&quot;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span> <span style="color: #0600FF;">else</span> <span style="color: #000000;">&#123;</span>
baseUrl <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
baseUrl <span style="color: #008000;">+=</span> FullUrl.<span style="color: #0000FF;">substring</span><span style="color: #000000;">&#40;</span>DriveSepIndex <span style="color: #008000;">+</span> <span style="color: #FF0000;">1</span>, lastSlashIndex <span style="color: #008000;">+</span> <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
txtBaseUrl.<span style="color: #0000FF;">text</span> <span style="color: #008000;">=</span> baseUrl<span style="color: #008000;">;</span></pre></div></div>

<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 4</strong></span></span></p>
<p>Press Ctrl + Enter to run the application.</p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong></strong></span></span></p>
<p><strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/10/how-to-get-the-base-url-in-flash-actionscript-2-and-actionscript-3.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>6 Useful WebTools For Designers</title>
		<link>http://www.fordevs.com/2009/10/6-useful-webtools-for-designers.html</link>
		<comments>http://www.fordevs.com/2009/10/6-useful-webtools-for-designers.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:30:25 +0000</pubDate>
		<dc:creator>Kathir</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Tech Stuff]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=578</guid>
		<description><![CDATA[COLOR PALETTE
To create a clean website, color plays a major role.  Selecting the color scheme for your site is made simple by introduction of many tools; you can use the color blender online tool to select your color scheme.
To select the color scheme go to www.colorblender.com and click on the first color box. Change its [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>COLOR PALETTE</strong></span></span><br />
To create a clean website, color plays a major role.  Selecting the color scheme for your site is made simple by introduction of many tools; you can use the color blender online tool to select your color scheme.<br />
To select the color scheme go to <a href="http://www.colorblender.com">www.colorblender.com</a> and click on the first color box. Change its color by using the RGB sliders below. It will generate 6 color matching palette for the selected color. It also allows you to change all 6 color palette manually by selecting the ‘Direct Edit’ radio button.</p>
<p><img class="aligncenter size-full wp-image-579" title="colorblender" src="http://www.fordevs.com/wp-content/uploads/2009/10/colorblender.png" alt="colorblender" width="474" height="263" /></p>
<p><span style="text-decoration: underline;"><span style="color: #000080;"><strong>CSS GENERATOR</strong></span></span><br />
Cascading style sheets forms an integral part of the web designing. Use the web tool available in <a href="http://csscreator.com">csscreator.com</a> [ link to : <a href="http://csscreator.com/tools/cssgenerate">http://csscreator.com/tools/cssgenerate</a>] to create style sheets for the HTML elements. Set the properties and click on ‘Generate CSS’.</p>
<p><img class="aligncenter size-full wp-image-587" title="cssgenerator" src="http://www.fordevs.com/wp-content/uploads/2009/10/cssgenerator.png" alt="cssgenerator" width="474" height="328" /><span style="text-decoration: underline;"><br />
</span></p>
<p><span style="text-decoration: underline;"><span style="color: #000080;"><strong>LOADING IMAGE GENERATOR</strong></span></span><br />
Generating “loading” gif images made easy with the web tool <a href="http://www.ajaxload.info">www.ajaxload.info</a>.<br />
To generate specify the “loading” image type, background color, foreground color and transparency and click “Generate It!”</p>
<p><img class="aligncenter size-full wp-image-586" title="ajaxload_info" src="http://www.fordevs.com/wp-content/uploads/2009/10/ajaxload_info.png" alt="ajaxload_info" width="474" height="258" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>ICON FINDER</strong></span></span><br />
It’s (<a href="http://www.iconfinder.net ">www.iconfinder.net </a>)an icon directory, where you can search for icons just as you google, filter it by its sizes and background color.</p>
<p><img class="aligncenter size-full wp-image-589" title="icon_finder" src="http://www.fordevs.com/wp-content/uploads/2009/10/icon_finder.png" alt="icon_finder" width="474" height="306" /></p>
<p><span style="text-decoration: underline;"><span style="color: #000080;"><strong>FAVICON GENERATOR</strong></span></span><br />
Use the web tool <a href="http://www.favion.cc">www.favicon.cc</a> you can generate the favicon. Either import an image or design your own favicon by using tools available.</p>
<p><img class="aligncenter size-full wp-image-588" title="favicon_generator" src="http://www.fordevs.com/wp-content/uploads/2009/10/favicon_generator.png" alt="favicon_generator" width="474" height="262" /></p>
<p><span style="text-decoration: underline;"><span style="color: #000080;"><strong>WEB 2.0 BUTTON GENERATOR</strong></span></span><br />
Go to <a href="http://www.mycoolbutton.com">www.mycoolbutton.com</a> to create free buttons. Generate free icons of your style and need.</p>
<p><img class="aligncenter size-full wp-image-590" title="mycoolbutton" src="http://www.fordevs.com/wp-content/uploads/2009/10/mycoolbutton.png" alt="mycoolbutton" width="474" height="288" /></p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="0" Name="Hyperlink" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/10/6-useful-webtools-for-designers.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Make Textbox Number Only - WPF</title>
		<link>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html</link>
		<comments>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:08:56 +0000</pubDate>
		<dc:creator>joy</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[WPF]]></category>

		<category><![CDATA[Textbox]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=572</guid>
		<description><![CDATA[Coding :

private void txt_PreviewTextInput&#40;object sender, TextCompositionEventArgs e&#41;
&#123;
e.Handled = !ValidNumeric&#40;e.Text&#41;;
base.OnPreviewTextInput&#40;e&#41;;
&#125;
&#160;
bool ValidNumeric&#40;string str&#41;
&#123;
bool ret = true;
&#160;
int l = str.Length;
for &#40;int i = 0; i &#38;lt; l; i++&#41;
&#123;
char ch = str&#91;i&#93;;
ret &#38;= Char.IsDigit&#40;ch&#41;;
&#125;
&#160;
return ret;
&#125;

Thanks dedjo
]]></description>
			<content:encoded><![CDATA[<p><em><strong>Coding :</strong></em></p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> txt_PreviewTextInput<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, TextCompositionEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
e.<span style="color: #0000FF;">Handled</span> <span style="color: #008000;">=</span> <span style="color: #008000;">!</span>ValidNumeric<span style="color: #000000;">&#40;</span>e.<span style="color: #0000FF;">Text</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">base</span>.<span style="color: #0000FF;">OnPreviewTextInput</span><span style="color: #000000;">&#40;</span>e<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #FF0000;">bool</span> ValidNumeric<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> str<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #FF0000;">bool</span> ret <span style="color: #008000;">=</span> true<span style="color: #008000;">;</span>
&nbsp;
<span style="color: #FF0000;">int</span> l <span style="color: #008000;">=</span> str.<span style="color: #0000FF;">Length</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> i <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> i <span style="color: #008000;">&amp;</span>lt<span style="color: #008000;">;</span> l<span style="color: #008000;">;</span> i<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #FF0000;">char</span> ch <span style="color: #008000;">=</span> str<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
ret <span style="color: #008000;">&amp;=</span> <span style="color: #FF0000;">Char</span>.<span style="color: #0000FF;">IsDigit</span><span style="color: #000000;">&#40;</span>ch<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">return</span> ret<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>Thanks <a href="http://dedjo.blogspot.com/2007/11/number-only-textbox.html">dedjo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Search Icons for web designing - Icon Finder</title>
		<link>http://www.fordevs.com/2009/08/search-icons-for-web-designing-icon-finder.html</link>
		<comments>http://www.fordevs.com/2009/08/search-icons-for-web-designing-icon-finder.html#comments</comments>
		<pubDate>Mon, 17 Aug 2009 09:38:04 +0000</pubDate>
		<dc:creator>joy</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Tech Stuff]]></category>

		<category><![CDATA[Icon]]></category>

		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=564</guid>
		<description><![CDATA[Icon Finder is  a place where there are huge collections of icons for web designing.

Features :- 

Collections of  107,536 icons
Browse 186 icons sets
Icons can be downloaded in &#8220;png&#8221; or &#8220;ico&#8221;  format.
We can search for icons with different sizes and background colors

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iconfinder.net/">Icon Finder</a> is  a place where there are huge collections of icons for web designing.</p>
<p><img class="aligncenter size-full wp-image-565" title="logo-large" src="http://www.fordevs.com/wp-content/uploads/2009/08/logo-large.png" alt="logo-large" width="376" height="153" /></p>
<h3><span style="text-decoration: underline;"><strong>Features :- </strong></span></h3>
<ul>
<li>Collections of  107,536 icons</li>
<li>Browse 186 icons sets</li>
<li>Icons can be downloaded in &#8220;png&#8221; or &#8220;ico&#8221;  format.</li>
<li>We can search for icons with different sizes and background colors</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/08/search-icons-for-web-designing-icon-finder.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to open Immediate Window In VS 2005- Shortcuts</title>
		<link>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html</link>
		<comments>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:49:19 +0000</pubDate>
		<dc:creator>joy</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[Visual Studio]]></category>

		<category><![CDATA[VS2005]]></category>

		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=550</guid>
		<description><![CDATA[The Immediate window is used to debug and evaluate expressions, execute statements, print variable values etc.The Immediate window also supports IntelliSense.There are different methods to open Immediate window.
Method 1 : -
We can open Immediate Window from debug menu.
Debug-&#62;Windows-&#62;Immediate Window

Some times Immediate Window menu would be missing.If it seems to be missing for you then you [...]]]></description>
			<content:encoded><![CDATA[<p>The Immediate window is used to debug and evaluate expressions, execute statements, print variable values etc.The Immediate window also supports IntelliSense.There are different methods to open Immediate window.</p>
<p><strong>Method 1 : -</strong><br />
We can open Immediate Window from debug menu.</p>
<p><strong><span style="color: #0000ff;">Debug-&gt;Windows-&gt;Immediate Window</span></strong></p>
<p><strong><span style="color: #0000ff;"><img class="aligncenter size-full wp-image-552" title="immediate" src="http://www.fordevs.com/wp-content/uploads/2009/07/immediate.png" alt="immediate" width="673" height="326" /></span></strong></p>
<p><span style="color: #000000;">Some times </span><span style="color: #000000;">Immediate Window menu would be missing.</span><span style="color: #000000;">If it seems to be missing for you then you can get the Immediate Window menu by going to Tools-&gt;Customize and then select the Commands tab, choose for Debug commands and drag Immediate onto the toolbar.Read more about this issue <a href="http://dotbert.loedeman.nl/?p=25">here</a>.<br />
</span></p>
<p><span style="color: #0000ff;"><span style="color: #000000;"><span style="color: #000000;"><strong>Method 2 : -</strong></span></span></span></p>
<p>Use the Keyboard Shortcut keys <strong><span style="color: #0000ff;">Ctrl+Alt+I</span></strong></p>
<p><span style="color: #000000;"><strong>Method 3 : -</strong></span><br />
We can also open Immediate Window through VS Command window.Just type &#8220;<span style="color: #0000ff;"><strong><span style="color: #0000ff;">i</span></strong><strong>mmed</strong></span>&#8221; in the prompt and hit enter Immediate Window will open.</p>
<p><strong><span style="color: #0000ff;"><img class="aligncenter size-full wp-image-557" title="commimmed" src="http://www.fordevs.com/wp-content/uploads/2009/07/commimmed.png" alt="commimmed" width="518" height="110" /></span></strong></p>
<p><span style="color: #000000;">For more details about Immediate Window go to <a href="http://msdn.microsoft.com/en-us/library/f177hahy(VS.80).aspx">MSDN Link</a></span><strong><span style="color: #0000ff;"><br />
</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Easy Trick To Search for Attachments in Gmail - has:attachment</title>
		<link>http://www.fordevs.com/2009/07/easy-trick-to-search-for-attachments-in-gmail-hasattachment.html</link>
		<comments>http://www.fordevs.com/2009/07/easy-trick-to-search-for-attachments-in-gmail-hasattachment.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 14:13:16 +0000</pubDate>
		<dc:creator>joy</dc:creator>
		
		<category><![CDATA[Tech Stuff]]></category>

		<category><![CDATA[Tips And Tricks]]></category>

		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=530</guid>
		<description><![CDATA[When there are hundreds of mail in our Gmail account and we are in need of mails with attachment and want it to find quickly.Then there is a easy trick in Gmail.
just type has:attachment and the type of the file like pdf,ppt,doc,zip with a space.
Example :-

has:attachment pdf

When we click the search mail button we get [...]]]></description>
			<content:encoded><![CDATA[<p>When there are hundreds of mail in our Gmail account and we are in need of mails with attachment and want it to find quickly.Then there is a easy trick in Gmail.</p>
<div id="attachment_531" class="wp-caption aligncenter" style="width: 375px"><img class="size-full wp-image-531" title="search-mail" src="http://www.fordevs.com/wp-content/uploads/2009/07/search-mail.png" alt="has:attachment" width="365" height="28" /><p class="wp-caption-text">has:attachment</p></div>
<p>just type has:attachment and the type of the file like pdf,ppt,doc,zip with a space.</p>
<p>Example :-</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">has:attachment pdf</pre></div></div>

<p>When we click the search mail button we get the mails with the attachment of the type we specified as the result.Here in this example we get the PDF attachment mails as result.</p>
<p>There are also many easy tricks to find a specified mail in gmail like &#8220;has:attachment&#8221; keyword.You can find the list <a href="http://email.about.com/od/gmailtips/qt/et_find_mail.htm">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/07/easy-trick-to-search-for-attachments-in-gmail-hasattachment.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Steps to Create Setup and Deployment Project in Dot Net VS 2008</title>
		<link>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html</link>
		<comments>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:12:19 +0000</pubDate>
		<dc:creator>praveen</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=452</guid>
		<description><![CDATA[Step 1
Create your own windows application. Create a new Windows application project in C# and named it as Sample.

Step 2
Design your own application. Here we have a simple login form for example.

Step 3
 After completing the design and coding, build the solution of the project in release mode.

Step 4
Check the Release folder for the file [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 1</strong></span></span><br />
Create your own windows application. Create a new Windows application project in C# and named it as Sample.</p>
<p><img class="aligncenter size-full wp-image-463" title="d01" src="http://www.fordevs.com/wp-content/uploads/2009/06/d01.jpg" alt="d01" width="683" height="471" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 2</strong></span></span></p>
<p>Design your own application. Here we have a simple login form for example.</p>
<p><img class="aligncenter size-full wp-image-454" title="d02" src="http://www.fordevs.com/wp-content/uploads/2009/06/d02.jpg" alt="d02" width="359" height="195" /><br />
<strong><span style="color: #000080;"><span style="text-decoration: underline;">Step 3</span></span><br />
</strong> After completing the design and coding, build the solution of the project in release mode.</p>
<p><img class="aligncenter size-full wp-image-466" title="d03" src="http://www.fordevs.com/wp-content/uploads/2009/06/d03.jpg" alt="d03" width="675" height="361" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 4</strong></span></span><br />
Check the Release folder for the file “ProjectName.exe”. Here in this example we have the project name as sample so we can find a file with the name Sample.exe.  Double click the executable file and check the example.</p>
<p><img class="aligncenter size-full wp-image-455" title="d04" src="http://www.fordevs.com/wp-content/uploads/2009/06/d04.jpg" alt="d04" width="675" height="361" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 5</strong></span></span><br />
Create a Deployment Project. Select the “Other Project Types” -&gt; “Setup and Deployment” -&gt; “Setup project”. Here we have the setup project for example as “SampleSetup”.</p>
<p><img class="aligncenter size-full wp-image-462" title="d05" src="http://www.fordevs.com/wp-content/uploads/2009/06/d05.jpg" alt="d05" width="683" height="497" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 6</strong></span></span><br />
Add the Sample.exe project application file inside the “Application Folder”.</p>
<p><img class="aligncenter size-full wp-image-456" title="d06" src="http://www.fordevs.com/wp-content/uploads/2009/06/d06.jpg" alt="d06" width="675" height="211" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 7</strong></span></span></p>
<p>To make a shortcut for the project right click “File System on Target Machine” and create shortcut of the application. Here in this example the project shortcut is created in program files folder.</p>
<p><img class="aligncenter size-full wp-image-464" title="d07" src="http://www.fordevs.com/wp-content/uploads/2009/06/d07.jpg" alt="d07" width="477" height="502" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 8</strong></span></span><br />
Create the shortcut of the application.</p>
<p><img class="aligncenter size-full wp-image-457" title="d08" src="http://www.fordevs.com/wp-content/uploads/2009/06/d08.jpg" alt="d08" width="445" height="223" /></p>
<p><strong><span style="color: #000080;"><span style="text-decoration: underline;">Step 9</span></span><br />
</strong>Rename the shortcut of the application.</p>
<p><img class="aligncenter size-full wp-image-458" title="d09" src="http://www.fordevs.com/wp-content/uploads/2009/06/d09.jpg" alt="d09" width="445" height="223" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 10</strong></span></span><br />
Move the Shortcut file to specified target. Note if you need another shortcut for some other target also create use same steps.</p>
<p><img class="aligncenter size-full wp-image-467" title="d10" src="http://www.fordevs.com/wp-content/uploads/2009/06/d10.jpg" alt="d10" width="445" height="223" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 11</strong></span></span><br />
Now build the solution in release mode.</p>
<p><img class="aligncenter size-full wp-image-459" title="d11" src="http://www.fordevs.com/wp-content/uploads/2009/06/d11.jpg" alt="d11" width="675" height="211" /></p>
<p><span style="text-decoration: underline;"><span style="color: #000080;"><strong>Step 12</strong></span></span><br />
The setup file created in release folder of the project specified path.</p>
<p><img class="aligncenter size-full wp-image-465" title="d12" src="http://www.fordevs.com/wp-content/uploads/2009/06/d12.jpg" alt="d12" width="675" height="211" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 13</strong></span></span><br />
Run the setup, step the path to extract.</p>
<p><img class="aligncenter size-full wp-image-460" title="d13" src="http://www.fordevs.com/wp-content/uploads/2009/06/d13.jpg" alt="d13" width="503" height="414" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong></strong></span></span></p>
<p><img class="aligncenter size-full wp-image-468" title="d14" src="http://www.fordevs.com/wp-content/uploads/2009/06/d14.jpg" alt="d14" width="503" height="414" /></p>
<p><img class="aligncenter size-full wp-image-461" title="d15" src="http://www.fordevs.com/wp-content/uploads/2009/06/d15.jpg" alt="d15" width="503" height="414" /></p>
<p><span style="color: #000080;"><span style="text-decoration: underline;"><strong>Step 14</strong></span></span><br />
The SampleSetup project is extracted and shortcuts are created. Now run your application.</p>
<p><img class="aligncenter size-full wp-image-453" title="d16" src="http://www.fordevs.com/wp-content/uploads/2009/06/d16.jpg" alt="d16" width="432" height="201" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Process Explorer</title>
		<link>http://www.fordevs.com/2009/07/process-explorer.html</link>
		<comments>http://www.fordevs.com/2009/07/process-explorer.html#comments</comments>
		<pubDate>Wed, 08 Jul 2009 18:00:26 +0000</pubDate>
		<dc:creator>Kathir</dc:creator>
		
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=482</guid>
		<description><![CDATA[It is a advanced process management utility from Sysinternals. It shows you detailed information about a running process like its icon, Image path, command line, current directory, memory statistics, performance graph, network connections, security, environment and more. You can have a closer look of a running process to see the list of DLLs it has [...]]]></description>
			<content:encoded><![CDATA[<p>It is a advanced process management utility from <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx">Sysinternals</a>. It shows you detailed information about a running process like its icon, Image path, command line, current directory, memory statistics, performance graph, network connections, security, environment and more. You can have a closer look of a running process to see the list of DLLs it has loaded or the operating system resource handles it has open.</p>
<p>This utility can be used as a replacement of the standard Task manager of Windows operating system. Like the task manager, you can kill a process or its tree, see the CPU cycles and memory a process takes.</p>
<p>Download the Process Explorer from <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" target="_blank">Sysinternals</a>.</p>
<p>Open the process explorer to see the list of all running processes, its id&#8230;</p>
<div id="attachment_490" class="wp-caption aligncenter" style="width: 636px"><img class="size-full wp-image-490" title="procexp1" src="http://www.fordevs.com/wp-content/uploads/2009/07/procexp1.jpg" alt="Process Explorer" width="626" height="412" /><p class="wp-caption-text">Process Explorer</p></div>
<p>Right click on any running process and select &#8216;Properties&#8217; to see its properties.</p>
<p>In the properties window you can see the process&#8217;s icon, image path, command line, current directory.</p>
<div id="attachment_491" class="wp-caption aligncenter" style="width: 447px"><img class="size-full wp-image-491" title="procexp2" src="http://www.fordevs.com/wp-content/uploads/2009/07/procexp2.jpg" alt="Process Properies" width="437" height="490" /><p class="wp-caption-text">Process Properies</p></div>
<p>The TCP/IP tab shows you the network connection status the selected process has made.</p>
<div id="attachment_492" class="wp-caption aligncenter" style="width: 447px"><img class="size-full wp-image-492" title="procexp3" src="http://www.fordevs.com/wp-content/uploads/2009/07/procexp3.jpg" alt="Process Network connection lookup" width="437" height="490" /><p class="wp-caption-text">Process Network connection lookup</p></div>
<p>Process explorer display consists of two sub windows, the default top window shows you the list of all active processes, while the lower pane is shown by selecting <strong>View -&gt; Show Lower Pane</strong> or <strong>CTRL + L</strong> or by clicking on<img class="size-full wp-image-494 " title="procexp5" src="http://www.fordevs.com/wp-content/uploads/2009/07/procexp5.jpg" alt="Process Explorer Show Lower pane button" width="24" height="22" /> icon.</p>
<p>There is two mode of viewing details of a selected process in the lower pane, they are &#8216;DLL&#8217; mode and &#8216;Handle&#8217; mode. You can toggle between these modes by clicking on <img class="alignnone size-full wp-image-495" title="procexp6" src="http://www.fordevs.com/wp-content/uploads/2009/07/procexp6.jpg" alt="procexp6" width="22" height="21" /> toggle button or <strong>View-&gt;Lower pane view-&gt; DLLs</strong> (<strong>CTRL + D</strong>) ; <strong>View-&gt;Lower pane view-&gt;Handles </strong>(<strong>CTRL + H</strong>).</p>
<p>If the process explorer in &#8216;DLL&#8217; mode, the lower pane will show the list of DLLs and memory mapped files the selected process has loaded. If it is in &#8216;Handle&#8217; mode, the lower pane will show the list of handles the selected process has opened.</p>
<p>The Process Explorer also has a search capability that will quickly show  you which processes have particular DLLs loaded or handles opened. The process explorer is useful for tracking down DLL-version problems or handle leaks,and provide deep perception of the way Windows and applications work.</p>
<p>Process Explorer does not require administrative privileges to run.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordevs.com/2009/07/process-explorer.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
