<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>depreciation &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/depreciation/</link>
	<description>Feed of posts on WordPress.com tagged "depreciation"</description>
	<pubDate>Sun, 29 Nov 2009 17:50:34 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[FA 9 5 accelerated depreciation]]></title>
<link>http://whatisaccounting.wordpress.com/2009/11/28/fa-9-5-accelerated-depreciation/</link>
<pubDate>Sat, 28 Nov 2009 10:35:08 +0000</pubDate>
<dc:creator>harry5599</dc:creator>
<guid>http://whatisaccounting.wordpress.com/2009/11/28/fa-9-5-accelerated-depreciation/</guid>
<description><![CDATA[Financial Accounting SFCC Spring 2008 Crosson Chapter 9 videos &#8230; Financial Accounting SFCC Cro]]></description>
<content:encoded><![CDATA[Financial Accounting SFCC Spring 2008 Crosson Chapter 9 videos &#8230; Financial Accounting SFCC Cro]]></content:encoded>
</item>
<item>
<title><![CDATA[Depreciation using Declining Balance Method]]></title>
<link>http://zamjad.wordpress.com/2009/11/24/depreciation-using-declining-balance-method/</link>
<pubDate>Wed, 25 Nov 2009 04:45:29 +0000</pubDate>
<dc:creator>zamjad</dc:creator>
<guid>http://zamjad.wordpress.com/2009/11/24/depreciation-using-declining-balance-method/</guid>
<description><![CDATA[We just saw how to calculate the depreciation using straight line method, now we are going to calcul]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We just saw how to calculate the depreciation using straight line method, now we are going to calculate depreciation using another method, i.e. Decline Balance method. This is also known as double declining balance method. Here are are again going to use progress bar in the list control. </p>
<p>Here is a code to calculate the depreciation using declining balance method.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">for</span> (<span style="color:#0000ff;">int</span> iIndex = 0; iIndex &#60; year; iIndex++)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3: 	depExpense = bookValue * percentage * 2;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5: 	<span style="color:#0000ff;">if</span> (bookValue - depExpense &#60; scrap)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6: 	{
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7: 		depExpense = bookValue - scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8: 		bookValue = scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9: 	}
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10: 	<span style="color:#0000ff;">else</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11: 	{
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12: 		bookValue -= depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: 	}
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15: 	accDepreciation += depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17: 	DepreciationInfo dpInfo = <span style="color:#0000ff;">new</span> DepreciationInfo();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18: 	dpInfo.Year = (iIndex + 1);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19: 	dpInfo.Depreciation = depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20: 	dpInfo.AccDepreciation = accDepreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21: 	dpInfo.BookValue = bookValue;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22: 	dpInfo.Percentage = (bookValue * 100) / cost; ;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24: 	depreciation.Add(dpInfo);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25: }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26: </pre>
</pre>
<p>Here is a complete XAML code of the project.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Window</span> <span style="color:#ff0000;">x</span>:<span style="color:#ff0000;">Class</span>=<span style="color:#0000ff;">&#34;Depreciation.Window1&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2:     <span style="color:#ff0000;">xmlns</span>=<span style="color:#0000ff;">&#34;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3:     <span style="color:#ff0000;">xmlns</span>:<span style="color:#ff0000;">x</span>=<span style="color:#0000ff;">&#34;http://schemas.microsoft.com/winfx/2006/xaml&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4:     <span style="color:#ff0000;">Title</span>=<span style="color:#0000ff;">&#34;Depreciation&#34;</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;400&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;600&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6:     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid</span> <span style="color:#ff0000;">Background</span>=<span style="color:#0000ff;">&#34;AliceBlue&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid.RowDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;4*&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid.RowDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid.ColumnDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ColumnDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ColumnDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid.ColumnDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter Cost of Fixed Asset<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtCost&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter life Span<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtYear&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter Scrap Value<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtScrapValue&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ListView</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;3&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">ColumnSpan</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;list&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">HorizontalContentAlignment</span>=<span style="color:#0000ff;">&#34;Stretch&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 27:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ListView.View</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 28:                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 29:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridView.ColumnHeaderTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 30:                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 31:                             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Border</span> <span style="color:#ff0000;">BorderBrush</span>=<span style="color:#0000ff;">&#34;Brown&#34;</span> <span style="color:#ff0000;">BorderThickness</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">CornerRadius</span>=<span style="color:#0000ff;">&#34;5&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 32:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Border.Background</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 33:                                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">LinearGradientBrush</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 34:                                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GradientStop</span> <span style="color:#ff0000;">Offset</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Color</span>=<span style="color:#0000ff;">&#34;Wheat&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 35:                                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GradientStop</span> <span style="color:#ff0000;">Offset</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Color</span>=<span style="color:#0000ff;">&#34;LightCoral&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 36:                                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">LinearGradientBrush</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 37:                                 <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Border.Background</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 38:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Foreground</span>=<span style="color:#0000ff;">&#34;Blue&#34;</span> <span style="color:#ff0000;">FontSize</span>=<span style="color:#0000ff;">&#34;14&#34;</span> <span style="color:#ff0000;">FontWeight</span>=<span style="color:#0000ff;">&#34;Bold&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">Text</span>=<span style="color:#0000ff;">&#34;{Binding}&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 39:                             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Border</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 40:                         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 41:                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridView.ColumnHeaderTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 42:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Year&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=Year}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 43:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Depreciation&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=Depreciation}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 44:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Accumulated Depreciation&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=AccDepreciation}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 45:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Book Value&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=BookValue}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 46:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Percentage&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 47:                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn.CellTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 48:                             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 49:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ProgressBar</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;50&#34;</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;20&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">Minimum</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Maximum</span>=<span style="color:#0000ff;">&#34;100&#34;</span> <span style="color:#ff0000;">Value</span>=<span style="color:#0000ff;">&#34;{Binding Percentage}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 50:                             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 51:                         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridViewColumn.CellTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 52:                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridViewColumn</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 53:                 <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 54:             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">ListView.View</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 55:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">ListView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 56:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Button</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;4&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;10&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;75&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;btnCalculate&#34;</span> <span style="color:#ff0000;">Click</span>=<span style="color:#0000ff;">&#34;btnCalculate_Click&#34;</span><span style="color:#0000ff;">&#62;</span>Calculate<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Button</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 57:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Button</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;4&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;10&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;75&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;btnExit&#34;</span> <span style="color:#ff0000;">Click</span>=<span style="color:#0000ff;">&#34;btnExit_Click&#34;</span><span style="color:#0000ff;">&#62;</span>Exit<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Button</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 58:     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 59: <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Window</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 60: </pre>
</pre>
<p>Here is complete C# code of the project.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">using</span> System;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: <span style="color:#0000ff;">using</span> System.Collections.Generic;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3: <span style="color:#0000ff;">using</span> System.Linq;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4: <span style="color:#0000ff;">using</span> System.Text;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5: <span style="color:#0000ff;">using</span> System.Windows;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6: <span style="color:#0000ff;">using</span> System.Windows.Controls;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7: <span style="color:#0000ff;">using</span> System.Windows.Data;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8: <span style="color:#0000ff;">using</span> System.Windows.Documents;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9: <span style="color:#0000ff;">using</span> System.Windows.Input;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10: <span style="color:#0000ff;">using</span> System.Windows.Media;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11: <span style="color:#0000ff;">using</span> System.Windows.Media.Imaging;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12: <span style="color:#0000ff;">using</span> System.Windows.Navigation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: <span style="color:#0000ff;">using</span> System.Windows.Shapes;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15: <span style="color:#0000ff;">namespace</span> Depreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16: {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17:     <span style="color:#808080;">/// &#60;summary&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18:     <span style="color:#808080;">/// Interaction logic for Window1.xaml</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19:     <span style="color:#808080;">/// &#60;/summary&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20:     <span style="color:#0000ff;">public</span> partial <span style="color:#0000ff;">class</span> Window1 : Window
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21:     {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22:         List&#60;DepreciationInfo&#62; depreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">int</span> year;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">double</span> cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">double</span> scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 27:         <span style="color:#0000ff;">public</span> Window1()
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 28:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 29:             InitializeComponent();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 30:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 31:             depreciation = <span style="color:#0000ff;">new</span> List&#60;DepreciationInfo&#62;();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 32:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 33:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 34:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">void</span> btnExit_Click(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 35:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 36:             Close();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 37:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 38:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 39:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">void</span> btnCalculate_Click(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 40:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 41:             depreciation.Clear();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 42:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 43:             year = Convert.ToInt32(txtYear.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 44:             cost = Convert.ToDouble(txtCost.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 45:             scrap = Convert.ToDouble(txtScrapValue.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 46:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 47:             <span style="color:#0000ff;">if</span> (year &#60;= 0)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 48:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 49:                 MessageBox.Show(&#34;<span style="color:#8b0000;">Number of years can not be zero or negative.</span>&#34;);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 50:                 <span style="color:#0000ff;">return</span>;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 51:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 52:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 53:             <span style="color:#0000ff;">if</span> (cost &#60;= 0 &#124;&#124; scrap &#60;= 0)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 54:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 55:                 MessageBox.Show(&#34;<span style="color:#8b0000;">Either Cost or Scrap value is not correct.</span>&#34;);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 56:                 <span style="color:#0000ff;">return</span>;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 57:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 58:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 59:             <span style="color:#0000ff;">double</span> percentage = 100 / year;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 60:             percentage /= 100;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 61:             <span style="color:#0000ff;">double</span> accDepreciation = 0;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 62:             <span style="color:#0000ff;">double</span> bookValue = cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 63:             <span style="color:#0000ff;">double</span> depExpense = 0;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 64:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 65:             <span style="color:#0000ff;">for</span> (<span style="color:#0000ff;">int</span> iIndex = 0; iIndex &#60; year; iIndex++)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 66:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 67:                 depExpense = bookValue * percentage * 2;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 68:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 69:                 <span style="color:#0000ff;">if</span> (bookValue - depExpense &#60; scrap)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 70:                 {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 71:                     depExpense = bookValue - scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 72:                     bookValue = scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 73:                 }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 74:                 <span style="color:#0000ff;">else</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 75:                 {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 76:                     bookValue -= depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 77:                 }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 78:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 79:                 accDepreciation += depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 80:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 81:                 DepreciationInfo dpInfo = <span style="color:#0000ff;">new</span> DepreciationInfo();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 82:                 dpInfo.Year = (iIndex + 1);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 83:                 dpInfo.Depreciation = depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 84:                 dpInfo.AccDepreciation = accDepreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 85:                 dpInfo.BookValue = bookValue;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 86:                 dpInfo.Percentage = (bookValue * 100) / cost; ;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 87:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 88:                 depreciation.Add(dpInfo);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 89:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 90:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 91:             list.ItemsSource = depreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 92:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 93:     }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 94:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 95:     <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> DepreciationInfo
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 96:     {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 97:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">int</span> Year
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 98:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 99:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">100:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Depreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">101:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">102:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">103:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> AccDepreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">104:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">105:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">106:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> BookValue
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">107:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">108:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">109:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Percentage
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">110:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">111:     }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">112: }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">113: </pre>
</pre>
<p>Here is the output of the program.</p>
<p><a href="http://zamjad.files.wordpress.com/2009/11/depreciationoutput.gif"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="DepreciationOutput" border="0" alt="DepreciationOutput" src="http://zamjad.files.wordpress.com/2009/11/depreciationoutput_thumb.gif?w=600&#038;h=400" width="600" height="400" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using progress bar inside the List view]]></title>
<link>http://zamjad.wordpress.com/2009/11/22/using-progress-bar-inside-the-tree-view/</link>
<pubDate>Mon, 23 Nov 2009 04:47:37 +0000</pubDate>
<dc:creator>zamjad</dc:creator>
<guid>http://zamjad.wordpress.com/2009/11/22/using-progress-bar-inside-the-tree-view/</guid>
<description><![CDATA[We can easily insert progras bar inside the tree view just like we added check box and combo box. We]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We can easily insert progras bar inside the tree view just like we added check box and combo box. We are again going to use the CellTemplate property of GridViewColumn. We are going to define data template to use the progress bar. </p>
<p>This time we are going to do something useful rather than using some dummy sample. This time we are going to make one simple application to calculate the book value of a fixed assets cost using the straight line method. </p>
<p>Here is a class to store the information about the depreciation. </p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> DepreciationInfo
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3: 	<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">int</span> Year
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4: 	{ <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6: 	<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Depreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7: 	{ <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9: 	<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> AccDepreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10: 	{ <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12: 	<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> BookValue
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: 	{ <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15: 	<span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Percentage
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16: 	{ <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17: }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18: </pre>
</pre>
<p>Calculation of book value using straight line method is very simple. Here is a simple method to calculate the book value.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">double</span> depExpense = depValue / year;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: <span style="color:#0000ff;">double</span> accDepreciation = 0;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3: <span style="color:#0000ff;">double</span> bookValue = cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5: <span style="color:#0000ff;">for</span> (<span style="color:#0000ff;">int</span> iIndex = 0; iIndex &#60; year; iIndex++)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6: {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7: 	accDepreciation += depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8: 	bookValue -= depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9: 	DepreciationInfo dpInfo = <span style="color:#0000ff;">new</span> DepreciationInfo();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10: 	dpInfo.Year = (iIndex + 1);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11: 	dpInfo.Depreciation = depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12: 	dpInfo.AccDepreciation = accDepreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: 	dpInfo.BookValue = bookValue;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14: 	dpInfo.Percentage = bookValue * 100 / cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16: 	depreciation.Add(dpInfo);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17: }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19: </pre>
</pre>
<p>Here is a complete XAML code of this project.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Window</span> <span style="color:#ff0000;">x</span>:<span style="color:#ff0000;">Class</span>=<span style="color:#0000ff;">&#34;Depreciation.Window1&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2:     <span style="color:#ff0000;">xmlns</span>=<span style="color:#0000ff;">&#34;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3:     <span style="color:#ff0000;">xmlns</span>:<span style="color:#ff0000;">x</span>=<span style="color:#0000ff;">&#34;http://schemas.microsoft.com/winfx/2006/xaml&#34;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4:     <span style="color:#ff0000;">Title</span>=<span style="color:#0000ff;">&#34;Depreciation&#34;</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;400&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;600&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5:     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid</span> <span style="color:#ff0000;">Background</span>=<span style="color:#0000ff;">&#34;AliceBlue&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid.RowDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;4*&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">RowDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid.RowDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Grid.ColumnDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ColumnDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ColumnDefinition</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid.ColumnDefinitions</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter Cost of Fixed Asset<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtCost&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter life Span<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtYear&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span><span style="color:#0000ff;">&#62;</span>Enter Scrap Value<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBlock</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBox</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">VerticalAlignment</span>=<span style="color:#0000ff;">&#34;Center&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;txtScrapValue&#34;</span><span style="color:#0000ff;">&#62;</span><span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">TextBox</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ListView</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;3&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">ColumnSpan</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;list&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">HorizontalContentAlignment</span>=<span style="color:#0000ff;">&#34;Stretch&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26:             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ListView.View</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 27:                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 28:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridView.ColumnHeaderTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 29:                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 30:                             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Border</span> <span style="color:#ff0000;">BorderBrush</span>=<span style="color:#0000ff;">&#34;Brown&#34;</span> <span style="color:#ff0000;">BorderThickness</span>=<span style="color:#0000ff;">&#34;2&#34;</span> <span style="color:#ff0000;">CornerRadius</span>=<span style="color:#0000ff;">&#34;5&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 31:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Border.Background</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 32:                                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">LinearGradientBrush</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 33:                                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GradientStop</span> <span style="color:#ff0000;">Offset</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Color</span>=<span style="color:#0000ff;">&#34;Wheat&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 34:                                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GradientStop</span> <span style="color:#ff0000;">Offset</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Color</span>=<span style="color:#0000ff;">&#34;LightCoral&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 35:                                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">LinearGradientBrush</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 36:                                 <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Border.Background</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 37:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">TextBlock</span> <span style="color:#ff0000;">Foreground</span>=<span style="color:#0000ff;">&#34;Blue&#34;</span> <span style="color:#ff0000;">FontSize</span>=<span style="color:#0000ff;">&#34;14&#34;</span> <span style="color:#ff0000;">FontWeight</span>=<span style="color:#0000ff;">&#34;Bold&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">Text</span>=<span style="color:#0000ff;">&#34;{Binding}&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 38:                             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Border</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 39:                         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 40:                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridView.ColumnHeaderTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 41:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Year&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=Year}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 42:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Depreciation&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=Depreciation}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 43:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Accumulated Depreciation&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=AccDepreciation}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 44:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Book Value&#34;</span> <span style="color:#ff0000;">DisplayMemberBinding</span>=<span style="color:#0000ff;">&#34;{Binding Path=BookValue}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 45:                     <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;Auto&#34;</span> <span style="color:#ff0000;">Header</span>=<span style="color:#0000ff;">&#34;Percentage&#34;</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 46:                         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">GridViewColumn.CellTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 47:                             <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 48:                                 <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">ProgressBar</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;50&#34;</span> <span style="color:#ff0000;">Height</span>=<span style="color:#0000ff;">&#34;20&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;5&#34;</span> <span style="color:#ff0000;">Minimum</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Maximum</span>=<span style="color:#0000ff;">&#34;100&#34;</span> <span style="color:#ff0000;">Value</span>=<span style="color:#0000ff;">&#34;{Binding Percentage}&#34;</span><span style="color:#0000ff;">/&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 49:                             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">DataTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 50:                         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridViewColumn.CellTemplate</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 51:                     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridViewColumn</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 52:                 <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">GridView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 53:             <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">ListView.View</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 54:         <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">ListView</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 55:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Button</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;0&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;4&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;10&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;75&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;btnCalculate&#34;</span> <span style="color:#ff0000;">Click</span>=<span style="color:#0000ff;">&#34;btnCalculate_Click&#34;</span><span style="color:#0000ff;">&#62;</span>Calculate<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Button</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 56:         <span style="color:#0000ff;">&#60;</span><span style="color:#800000;">Button</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Column</span>=<span style="color:#0000ff;">&#34;1&#34;</span> <span style="color:#ff0000;">Grid</span>.<span style="color:#ff0000;">Row</span>=<span style="color:#0000ff;">&#34;4&#34;</span> <span style="color:#ff0000;">Margin</span>=<span style="color:#0000ff;">&#34;10&#34;</span> <span style="color:#ff0000;">Width</span>=<span style="color:#0000ff;">&#34;75&#34;</span> <span style="color:#ff0000;">Name</span>=<span style="color:#0000ff;">&#34;btnExit&#34;</span> <span style="color:#ff0000;">Click</span>=<span style="color:#0000ff;">&#34;btnExit_Click&#34;</span><span style="color:#0000ff;">&#62;</span>Exit<span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Button</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 57:     <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Grid</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 58: <span style="color:#0000ff;">&#60;/</span><span style="color:#800000;">Window</span><span style="color:#0000ff;">&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 59: </pre>
</pre>
<p>Here is a complete C# code of this project.</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:450px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">using</span> System;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: <span style="color:#0000ff;">using</span> System.Collections.Generic;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3: <span style="color:#0000ff;">using</span> System.Linq;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4: <span style="color:#0000ff;">using</span> System.Text;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5: <span style="color:#0000ff;">using</span> System.Windows;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6: <span style="color:#0000ff;">using</span> System.Windows.Controls;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7: <span style="color:#0000ff;">using</span> System.Windows.Data;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8: <span style="color:#0000ff;">using</span> System.Windows.Documents;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9: <span style="color:#0000ff;">using</span> System.Windows.Input;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10: <span style="color:#0000ff;">using</span> System.Windows.Media;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11: <span style="color:#0000ff;">using</span> System.Windows.Media.Imaging;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12: <span style="color:#0000ff;">using</span> System.Windows.Navigation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: <span style="color:#0000ff;">using</span> System.Windows.Shapes;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15: <span style="color:#0000ff;">namespace</span> Depreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16: {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17:     <span style="color:#808080;">/// &#60;summary&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18:     <span style="color:#808080;">/// Interaction logic for Window1.xaml</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19:     <span style="color:#808080;">/// &#60;/summary&#62;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20:     <span style="color:#0000ff;">public</span> partial <span style="color:#0000ff;">class</span> Window1 : Window
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21:     {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22:         List&#60;DepreciationInfo&#62; depreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">int</span> year;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">double</span> cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">double</span> scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 27:         <span style="color:#0000ff;">public</span> Window1()
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 28:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 29:             InitializeComponent();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 30:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 31:             depreciation = <span style="color:#0000ff;">new</span> List&#60;DepreciationInfo&#62;();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 32:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 33:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 34:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">void</span> btnExit_Click(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 35:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 36:             Close();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 37:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 38:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 39:         <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">void</span> btnCalculate_Click(<span style="color:#0000ff;">object</span> sender, RoutedEventArgs e)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 40:         {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 41:             depreciation.Clear();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 42:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 43:             year = Convert.ToInt32(txtYear.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 44:             cost = Convert.ToDouble(txtCost.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 45:             scrap = Convert.ToDouble(txtScrapValue.Text);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 46:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 47:             <span style="color:#0000ff;">if</span> (year &#60;= 0)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 48:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 49:                 MessageBox.Show(&#34;<span style="color:#8b0000;">Number of years can not be zero or negative.</span>&#34;);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 50:                 <span style="color:#0000ff;">return</span>;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 51:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 52:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 53:             <span style="color:#0000ff;">double</span> depValue = cost - scrap;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 54:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 55:             <span style="color:#0000ff;">if</span> (depValue &#60;= 0)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 56:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 57:                 MessageBox.Show(&#34;<span style="color:#8b0000;">Either Cost or Scrap value is not correct.</span>&#34;);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 58:                 <span style="color:#0000ff;">return</span>;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 59:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 60:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 61:             <span style="color:#0000ff;">double</span> depExpense = depValue / year;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 62:             <span style="color:#0000ff;">double</span> accDepreciation = 0;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 63:             <span style="color:#0000ff;">double</span> bookValue = cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 64:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 65:             <span style="color:#0000ff;">for</span> (<span style="color:#0000ff;">int</span> iIndex = 0; iIndex &#60; year; iIndex++)
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 66:             {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 67:                 accDepreciation += depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 68:                 bookValue -= depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 69:                 DepreciationInfo dpInfo = <span style="color:#0000ff;">new</span> DepreciationInfo();
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 70:                 dpInfo.Year = (iIndex + 1);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 71:                 dpInfo.Depreciation = depExpense;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 72:                 dpInfo.AccDepreciation = accDepreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 73:                 dpInfo.BookValue = bookValue;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 74:                 dpInfo.Percentage = bookValue * 100 / cost;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 75:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 76:                 depreciation.Add(dpInfo);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 77:             }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 78:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 79:             list.ItemsSource = depreciation;
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 80:         }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 81:     }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 82:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 83:     <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> DepreciationInfo
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 84:     {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 85:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">int</span> Year
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 86:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 87:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 88:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Depreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 89:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 90:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 91:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> AccDepreciation
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 92:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 93:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 94:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> BookValue
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 95:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 96:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 97:         <span style="color:#0000ff;">public</span> <span style="color:#0000ff;">double</span> Percentage
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 98:         { <span style="color:#0000ff;">get</span>; <span style="color:#0000ff;">set</span>; }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 99:     }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">100: }
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">101: </pre>
</pre>
<p>Here is the output of this program.</p>
<p><a href="http://zamjad.files.wordpress.com/2009/11/depreciation.gif"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Depreciation" border="0" alt="Depreciation" src="http://zamjad.files.wordpress.com/2009/11/depreciation_thumb.gif?w=600&#038;h=400" width="600" height="400" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MIS CONCEPTION ABOUT ROAD WIDENING AND COMPENSATION]]></title>
<link>http://ecopackindia.wordpress.com/2009/11/23/mic-conception-about-road-widening-and-compensation/</link>
<pubDate>Mon, 23 Nov 2009 04:37:46 +0000</pubDate>
<dc:creator>ecopackindia</dc:creator>
<guid>http://ecopackindia.wordpress.com/2009/11/23/mic-conception-about-road-widening-and-compensation/</guid>
<description><![CDATA[MANY READERS SOUGHT DETAILS REGARDING ROAD WIDENING PROCESS AND COMPENSATION UNDER TDR(TRANSFERABLE ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="text-decoration:underline;">MANY READERS SOUGHT DETAILS REGARDING ROAD WIDENING PROCESS AND COMPENSATION</span></strong></p>
<p><strong>UNDER <span style="color:#ff6600;">TDR(TRANSFERABLE DEVELOPMENT RIGHT) COMPENSATION IN ANY FORM AT ANY TIME WILL NOT BE PAID UNDER THE KTCP ACT. </span></strong></p>
<p><strong>IF THE PROPERTY OR LAND OR SITE ACQUIRED UNDER LAND ACQUISITION ACT, SUITABLE MONETARY COMPENSATION WILL BE PAID.</strong></p>
<p><strong><span style="text-decoration:underline;"><span style="color:#00ff00;">UNDER THE LAND ACQUISITION ACT, THE COMPENSATION WILL BE PAID AS PER THE GUIDANCE VALUE AND THE PRESENT DEPRECIATED VALUE OF THE BUILDING. </span></span> THE COMPENSATION WILL BE PAID ONLY FOR THE STRUCTURES OR BUILDINGS, WHICH HAD BEEN CONSTRUCTED AS PER THE SANCTIONED BUILDING PLANS. </strong></p>
<p><strong>MOST OF THE BUILDINGS HAVE MORE THAN 50%DEVIATION AND VIOLATION.  SUCH BUILDINGS ARE NOT ELIGIBLE FOR BUILDING COMPENSATION TO THE EXTENT OF VIOLATION.  THE COMPENSATION IS PAYABLE ONLY FOR THE GROUND OR SITE AND THE SANCTIONED PORTIONS OR STRUCTURES.<br />
</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[FOREX-Dollar rebounds broadly as market digests Bernanke]]></title>
<link>http://lanle.wordpress.com/2009/11/17/forex-dollar-rebounds-broadly-as-market-digests-bernanke/</link>
<pubDate>Tue, 17 Nov 2009 15:02:52 +0000</pubDate>
<dc:creator>ktetaichinh</dc:creator>
<guid>http://lanle.wordpress.com/2009/11/17/forex-dollar-rebounds-broadly-as-market-digests-bernanke/</guid>
<description><![CDATA[Wednesday November 18, 2009 06:57:10 AM GMT MARKETS-FOREX (UPDATE 4) * Dollar recovers from 15-month]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wednesday November 18, 2009 06:57:10 AM GMT</p>
<p><img src="http://static.forexyard.com/images/home/reuters_white.jpg" alt="Reuters News" /></p>
<div>MARKETS-FOREX (UPDATE 4)</div>
<p>* Dollar recovers from 15-month low as mkt digests Bernanke</p>
<p>* Euro once again unable to hold above $1.50</p>
<p>* China&#8217;s Hu makes no mention of yuan after Obama meeting</p>
<p>(Recasts, updates prices, adds comment and quote)</p>
<p>&#160;</p>
<p>By Jamie McGeever</p>
<p>LONDON, Nov 17 (Reuters) &#8211; The dollar rebounded on Tuesday from Monday&#8217;s 15-month lows after Federal Reserve Chairman Ben Bernanke made rare comments about the dollar, encouraging traders to trim longer-term bets against the currency.</p>
<p>Bernanke surprised investors on Monday when he said the central bank was &#8220;attentive to implications of changes in the value of the dollar&#8221;, although he reiterated that interest rates would remain exceptionally low for an &#8220;extended period&#8221;.</p>
<p>Some interpreted his remarks on the dollar, which is usually the purview of Treasury, as a sign the Fed is worried further depreciation could stoke inflation.</p>
<p>The euro briefly popped above $1.50 but was once again unable to hold above that level, where large options-related activity is also providing tough resistance, traders said.</p>
<p>European Central Bank President Jean-Claude Trichet also spoke on currencies on Tuesday, reiterating his oft-repeated views that a strong dollar is in the U.S. interest and that the euro was never intended to be a reserve currency..</p>
<p>&#8220;He (Bernanke) was tying to emphasise to the market what Fed thinking is going into the last few months of the asset purchase scheme. They have to talk well ahead to give no shocks to the market, and that&#8217;s what Bernanke was trying to do,&#8221; said Peter Frank, senior currency strategist at Societe Generale in London.</p>
<p>Frank said the dollar remained in a longer-term downtrend but said Bernanke&#8217;s remarks were probably aimed more at &#8220;smoothing&#8221; its decline than reversing it, and that traders are &#8220;a little uncomfortable&#8221; being long of euros above $1.50.</p>
<p>At 1035 GMT the dollar index was up a third of a percent on the day at 75.17, after striking a 15-month low of 74.679 on Monday.</p>
<p>The euro fell 0.4 percent to $1.4910, off more than a cent from above $1.5015 struck on Monday, weighed down early on by profit booking and options-related selling around $1.50.</p>
<p>It was in the middle of the $1.48-$1.51 range which traders say marks a large &#8220;double-no-touch&#8221; options structure that rolls off on Friday.</p>
<p>The dollar was unchanged against the yen at 89.05 yen, recovering from 88.74 yen earlier in the day, its lowest in just over a month.</p>
<p>&#160;</p>
<p>FED RHETORIC</p>
<p>The dollar rose more sharply against so-called &#8220;commodity currencies&#8221; like the Australian and Canadian dollars, gaining 1 percent against both as oil, metals, and equity prices fell across the board.</p>
<p>Bernanke&#8217;s comments on Monday came as U.S. President Barack Obama was in China, although few expect the visit to result in any near-term changes in Beijing&#8217;s foreign exchange policy.</p>
<p>Chinese President Hu Jintao made no mention of the yuan after meeting Obama, and the U.S. leader only said he was pleased with China&#8217;s commitment on moving towards more market-oriented exchange rates.</p>
<p>Richard Fisher, president of the Dallas Fed, also said on Monday the dollar&#8217;s decline so far has not been disorderly although the commitment to keep rates low for an extended period could create the potential for carry trades.</p>
<p>And Fed Vice Chairman Donald Kohn said the low interest rate policy was meant to encourage investors to move into riskier assets and that there are no signs yet of an asset bubble building up in the United States.</p>
<p>&#8220;It&#8217;s very unusual for the Fed to even comment on the dollar, so in that respect the market was caught by surprise,&#8221; said Johan Javeus, strategist at SEB in Stockholm.</p>
<p>But for the dollar to reverse its long-term downtrend, China needed to take greater steps toward a more flexible currency regime, or the Fed had to signal rate hikes are imminent.</p>
<p>&#8220;Neither of those prerequisites have been fulfilled, so the controlled, grinding lower of the dollar will continue,&#8221; Javeus said.</p>
<p>Sterling was well supported after UK inflation figures came in above forecasts, and on an Italian press report that Italian chocolate maker Ferrero might be considering an offer with friendly investors for an alliance with Britain&#8217;s Cadbury.</p>
<p>The euro was last down 0.3 percent on the day at 88.65 pence</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Only an economist would call this a positive sign!]]></title>
<link>http://illinoisbankruptcylawyerblog.com/2009/11/10/only-an-economist-would-call-this-a-positive-sign/</link>
<pubDate>Tue, 10 Nov 2009 21:27:51 +0000</pubDate>
<dc:creator>mhedayat</dc:creator>
<guid>http://illinoisbankruptcylawyerblog.com/2009/11/10/only-an-economist-would-call-this-a-positive-sign/</guid>
<description><![CDATA[In an article that would only make sense to an economist, Bloomberg reported that fewer people this ]]></description>
<content:encoded><![CDATA[In an article that would only make sense to an economist, Bloomberg reported that fewer people this ]]></content:encoded>
</item>
<item>
<title><![CDATA[Santa Cruz County real estate stats for October 2009]]></title>
<link>http://santacruzcountyrealestateblog.com/2009/11/10/santa-cruz-county-real-estate-stats-for-october-2009/</link>
<pubDate>Tue, 10 Nov 2009 20:25:06 +0000</pubDate>
<dc:creator>Carol VanAusdal</dc:creator>
<guid>http://santacruzcountyrealestateblog.com/2009/11/10/santa-cruz-county-real-estate-stats-for-october-2009/</guid>
<description><![CDATA[The median price in Santa Cruz County decreased another $20,000 to $515,000 in October. Sales for ba]]></description>
<content:encoded><![CDATA[The median price in Santa Cruz County decreased another $20,000 to $515,000 in October. Sales for ba]]></content:encoded>
</item>
<item>
<title><![CDATA[The Value of Confidence]]></title>
<link>http://jbstansel.wordpress.com/2009/11/08/the-value-of-confidence/</link>
<pubDate>Sun, 08 Nov 2009 19:53:11 +0000</pubDate>
<dc:creator>jbstansel</dc:creator>
<guid>http://jbstansel.wordpress.com/2009/11/08/the-value-of-confidence/</guid>
<description><![CDATA[Today during prayer, our spiritual formation director asked which of us needed prayer for a lack of ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today during prayer, our spiritual formation director asked which of us needed prayer for a lack of confidence. This question resonated deep in my heart; , oh how many times I&#8217;ve told myself I wasn&#8217;t able to do the thing I wanted, or be used in the way I wanted to be used, only because I felt as if I weren&#8217;t good enough, or talented enough, or &#8220;anointed&#8221; enough! This is something I truly need to overcome, because it isn&#8217;t in my own strength that I&#8217;ll find usefulness, but in His alone.</p>
<p>This issue came to ahead the night I helped Clayton, my worship pastor, lead worship at the Wednesday night Adult Service. As we sound checked and went over songs with the rest of the band, all of my inadequacies were brought front and center. I was humbled, to say the least, and realized how little I know about how to lead worship. This threw me into a whirlwind of self-doubt, self-depreciation, self-loathing, self-pity, and all the other &#8220;self&#8221; things you can think of.</p>
<p>After the set, I walked off stage, under the orange and purple stage lights, and sauntered off to the green room, where I collected my things. I packed my guitar up and then made my way covertly up the side hallway that led into the church concourse. It was nighttime, and the huge space was completely unoccupied by anyone but me.</p>
<p>Scattered every 15 or so feet throughout the concourse, which curved its way along the front of the building, are comfortable chairs and tables. I sat down in one of the more comfortable ones and just began to think to myself. The word of the night was &#8220;defeated,&#8221; I just felt completely and utterly defeated. It was at this moment that other questions began flooding my mind, things like &#8220;what are you doing here?&#8221; and &#8220;you know aren&#8217;t ever going to learn the things you need.&#8221; And the solutions to these problems were certainly no better; &#8220;just pack up and leave,&#8221; &#8220;tell Clayton you want to switch internships.&#8221; These thoughts were not from the Lord, and I realized, sitting in the church alone except for my negative thoughts, that I needed to remove myself from the situation, with the goal of easing my mind and putting those thoughts to rest.</p>
<p>To stray from the topic a bit, I have resolved to remove myself from situations and circumstances where I feel as though I&#8217;m &#8220;wallowing&#8221; in my insecurities and sadness. Do you relate to that? I think sometimes we get so used to these negative, self-defeating thoughts that it becomes uncomfortable to be anywhere other than wherever those thoughts are allowed to roam unhindered through the corridors of our broken minds.</p>
<p>In other words, I think we enjoy these thoughts sometimes.</p>
<p>The goal is to enjoy the positives more, to flee from the negatives. And so, I have decided to be more aware of these moments where I rest and find comfort in such negative and self-depreciating thoughts, and then remove myself from the situation.</p>
<p>Anyway, after realizing this self-defeating mindset I found myself in, I pulled out my journal and made a quick note of what was happening in my heart. I then called a friend and asked him to come and pick me up instead of waiting for service to be over and getting a ride back with someone else. He came, picked me up, and we had a great conversation about what I was dealing with, the questions, the lack of confidence, the humility I was experiencing. And it was during this conversation that the Lord truly did a miraculous thing in my mind and in my heart, and I realized how silly the whole thing was. I literally went from wanting to leave the program and being totally insecure to having the wonderful understanding that it is OK to still be in learning! We don&#8217;t have to be perfect, and I will get to a point one of these days where I am comfortable in my calling and able to do all the things that worship leaders do, musically and spiritually. Once I realized this, I was just fine.</p>
<p>I think this realization, that I have a real issue of lacking confidence, has spurred me on to work at the skills and heart issues I came to this program to deal with. If you are discouraged because you aren&#8217;t &#8220;where you wish you were&#8221; in your calling or in your heart, I say you should calm your soul! Find peace in the fact that none of us are truly there yet and that we are all just learning and growing and, as we like to say in OSL, &#8220;in process.&#8221; Be matter-of-fact with who you are, what you have, and where you are going. Do not think less or more of yourself than you ought, and be OK with having to learn and grow. There is so much freedom in it!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Shift and Depreciation of the English Language Due to Internet]]></title>
<link>http://thedirtylittlesheila.wordpress.com/2009/11/05/the-shift-and-depreciation-of-the-english-language-due-to-internet/</link>
<pubDate>Thu, 05 Nov 2009 07:26:21 +0000</pubDate>
<dc:creator>adminbro</dc:creator>
<guid>http://thedirtylittlesheila.wordpress.com/2009/11/05/the-shift-and-depreciation-of-the-english-language-due-to-internet/</guid>
<description><![CDATA[Kids now a days have more access to many things, and by access I mean on the computer, which is lead]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Kids now a days have more access to many things, and by access I mean on the computer, which is leading to a decrease in the ability of coherent speaking of the english language.  These are not only access to things such as chat rooms, porn, games, and blogs (albeit there is more out there, but this sums up the jist of what I and many other kids out there do on a lazy day basis).  I don&#8217;t mean to make it sound that every kid watches porn, plays games or chats, I&#8217;m just saying these are the many, too easily accessible things that are diminishing our human contact, leading to a depreciation of the english language.  I have noticed just within a span of a few years, from my brother&#8217;s grade, only two years older than me, to my generation, to two or three years under me.  Kids have begun to shift and speak a completely different language.  For example, I was at a friend&#8217;s work christmas party, and there was this kid who was 16, and in the conversation he said &#8220;want beef?&#8221;  This isn&#8217;t really an example of a depreciation of the language; it&#8217;s actually quite clever, taken from the Pigin language for &#8220;got a problem/want to fight?&#8221;  But it&#8217;s things like this that make the language shift.  I&#8217;ll come back to this &#8220;shift.&#8221;  Other times I hear kids using words they learned on the computer, such as &#8220;leet&#8221; which in computer language is 1337, meaning elite.  Other variations of computer language used in daily life are LOL, 143.  These mean laughing out loud and I love you, these examples come from the 1337 or leet computer language.  This leet language, for a bit of background, was formed in the &#8216;underground&#8217; of the online computer gaming world.  Codes were formed, using alpha-numerical and other characters to form sentences, which contain all sorts of spelling and grammatical errors; it nonetheless formed itself into a language.  Besides computers and they&#8217;re easily and readily available ways to access things instantaneously across the globe, are its ways to exploit yourself just as instantly across the globe.  I&#8217;m not saying this in a bad way, it&#8217;s just an integral part of the shift in language.  With these online blog and chat features and programs such as MySpace, Facebook, and Nexopia, to name a few popular ones, kids are able to open the door into their own personal life, space, and home.  They&#8217;re able to show friends, family, music, habits, hobbies, photos (sometimes quite promiscuous) to everyone and anyone willing to be their &#8220;friend&#8221; over the net.  This then leads to other kids (sometimes not kids at all, &#8220;Someone who may claim to be a 14 year old girl, may in fact be a 40 year old man&#8221; quoted from the Nexopia website) posting pictures and messages of random things.  This also ties in with fashion, music, and current trends (all tie in with emo, punk, surfer, skater, and retro, most of the trends of today) of which I&#8217;ll be very succinct when I say it reflects some european ways.  There&#8217;s also the more accepting attitude toward homosexuality (personally I don&#8217;t care who is and isn&#8217;t gay).  This leads people (straight or otherwise) to be more free of what they say.  Men and women using more words such as cute, and &#8220;I love you&#8221; even to mean just a friendship.  However it also leads to weirdly written sentences (sometimes not even sentences at all) with strangely inserted characters in the middle of it to form some type word or phrase that sometimes makes no sense to me, but lots of sense to the receiver.  To be sure that it wasn&#8217;t an inside joke with a couple or few people who were friends, I&#8217;ve spent many an hours looking at nexopia, myspace and other pages of random people who all have similar writings.  Examples that stuck out the most are &#8216;&#38;&#38;,&#8217; the use of the ampersand twice.  Also the use of &#38;&#38; along with &#8216;amp;it,&#8217; no spelling mistake there, the semi colon was put there by the people typing it.  Supposedly this means the next word is continued from the last word or sentence into the next.  There&#8217;s also the use of emoticons.  However some people, instead of using the actual face, or making a look-alike face <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> , they do :rollseyes:, which usually in HTML format, forms a small face rolling its eyes, but they do it to signify the face.  These types of things all shift language to becoming lazier.  Instead of saying how it made you feel, kids just put &#8220;I went to Mike&#8217;s party and it was :thumbsdown:&#8221;  This is a simple, stupid example I made up while writing this, but it gets the point across.  Instead of saying &#8220;I went to MIke&#8217;s party, it was pretty boring, no one showed up, so I left early,&#8221; they just put the thumbsdown sign in hopes that the other person they are talking to will understand.  Many times I have seen someone say, instead of &#8220;I love you&#8221; or even 143, the code language, they write I &#60;3 you, which is nice, and means &#34;I heart you,&#34; (the &#60;3 is supposed to be a heart).  Then that slowly shifted to &#34;I hearts you&#34; instead of people putting &#34;I love you lots,&#34; or in the worst case &#34;I &#60;3 x2 you&#34; (meaning I heart you times two), we get a mutation into something like &#34;I hearted you much.&#34;  The language just gets very strange.  These examples show up in daily speech, I&#039;ve heard some of the people I know that are between the ages of 14-20 speaking like this (not to say there&#039;s not older people talking and writing like this, it&#039;s just these people are what I&#039;ve experienced and how I gained this &#039;knowledge&#039;).  My knowledge is based predominantly on just plain spending time on the computer, using my own accounts of facebook, nexopia, myspace, hi5, friendster, tagworld, all those similar things, and not to forget MSN and online computer games.  The knowledge of these things just seeped into my conscious and I began to think about it, along with doing my own research from sites such as wikipedia, urbandictionary.com (that may sound like an uncredible source to do research from, but alot of the facts and postings on there are true, you just have to look through the pile of funny dirt thats on top).  I say knowledge meaning just things I think about and the ideas and theories I form in my mind, along with putting it together like a puzzle with the informal research I&#039;ve done, and just by talking to others on the subject.  One person I talked to said that the english language will be completely screwed up and changed in the next years to come.  As I thought about that, it made some sense in my mind.  I see things just from the change from about 5 years ago, the language is completely different.  Maybe it will be screwed up and maybe it won&#039;t.  Who knows.</p>
<p>If we look at the times through the ages, there was different speaking, almost every 10-20 years.  Lets start with the 1930&#039;s-1950&#039;s, it seems that people who endured the depression and war were the fathers (figuratively) of a more mature language.  But they were also the fathers (literally) of a completely different language ten years later: their kids.  These kids who were born between 1940-1950&#039;s, grew up in the 1960&#039;s, in their teen years, and looking at the language differences and uses from the 50&#039;s to the 60&#039;s, only ten years, there was a big leap.  People seemed to speak more conservatively and formal in the 50&#039;s.  In the span to the 60&#039;s, something evolved to the hippie language.  It was a neat and wondrous language that probably many thought was very strange and made no sense.  Going on to the 1970&#039;s, it seems the language evolved to the, what we refer to today as, as the retro language, or disco era language.  That was also a cool strange way of speaking.  That then evolved in the 1980&#039;s with the punk and grunge revolution and into the 1990&#039;s where it was a homogenized and coagulated form of what seems like 60&#039;s, 70&#039;s, 80&#039;s, all vying for a place.  The 2000&#039;s are now evolving into something mixed up with all the past years languages.  I&#039;ve heard things dating back hundreds of years, even thousands; some things of ye olde english, some things of the retro/disco eras.  This all evolves together and mutates into something weird, and it shifts the language.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Revisiting The Big Mac Economics]]></title>
<link>http://reyadel.wordpress.com/2009/11/03/revisiting-the-big-mac-economics/</link>
<pubDate>Tue, 03 Nov 2009 23:59:24 +0000</pubDate>
<dc:creator>reyadel</dc:creator>
<guid>http://reyadel.wordpress.com/2009/11/03/revisiting-the-big-mac-economics/</guid>
<description><![CDATA[A few months back, &laquo;The Grey Chronicles&raquo; presented a post on the BigMac Index: A Compend]]></description>
<content:encoded><![CDATA[A few months back, &laquo;The Grey Chronicles&raquo; presented a post on the BigMac Index: A Compend]]></content:encoded>
</item>
<item>
<title><![CDATA[Rand to Weaken 3 Percent by Year-End, Morgan Stanley Forecasts By Garth Theunissen Oct. 9 (Bloomberg]]></title>
<link>http://asx200.wordpress.com/2009/11/03/rand-to-weaken-3-percent-by-year-end-morgan-stanley-forecasts-by-garth-theunissen-oct-9-bloomberg/</link>
<pubDate>Tue, 03 Nov 2009 15:45:20 +0000</pubDate>
<dc:creator>asx200</dc:creator>
<guid>http://asx200.wordpress.com/2009/11/03/rand-to-weaken-3-percent-by-year-end-morgan-stanley-forecasts-by-garth-theunissen-oct-9-bloomberg/</guid>
<description><![CDATA[(CFD.net.au &#8211; Contract for Difference, Share, Forex, ETFs, Commodities Traders) &#8211; Plesch]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>(<a href="http://cfd.net.au/home/">CFD.net.au &#8211; Contract for Difference, Share, Forex, ETFs, Commodities Traders</a>) &#8211;  Pleschinger , an analyst at Morgan Stanley, said separately in a telephone interview from London. The rand lost 0.5 percent to 7.3723 per dollar by 5:50 p.m. in Johannesburg, from a close of 7.3325 yesterday. “The strength of the currency means South Africa cannot take full advantage of the commo &#8230;<!--more--> Pleschinger , an analyst at <a href="http://cfd.net.au/home/topic/morgan">Morgan</a> Stanley, said separately in a <a href="http://cfd.net.au/home/topic/telephone-interview">telephone interview</a> from London. The rand lost 0.5 percent to 7.3723 per dollar by 5:50 p.m. in Johannesburg, from a close of 7.3325 yesterday. “The strength of the currency means South Africa cannot take full advantage of the commodity rally,” said Pleschinger. “The structural weakness of the <a href="http://cfd.net.au/home/topic/current-account">current account</a> is still there while high inflation will keep <a href="http://cfd.net.au/home/topic/monetary-conditions">monetary conditions</a> tight and limit a recovery in domestic demand.” The rand has rallied 27 percent this year as signs the <a href="http://cfd.net.au/home/topic/global-recession">global recession</a> is easing boosted <a href="http://cfd.net.au/home/topic/commodity-prices">commodity prices</a> and encouraged purchases of higher-yielding assets. The gains have hurt <a href="http://cfd.net.au/home/topic/export-earnings">export earnings</a> for <a href="http://cfd.net.au/home/topic/commodity-producers">commodity producers</a> including Impala Platinum <a href="http://cfd.net.au/home/topic/hold">Hold</a>ings Ltd., the world’s biggest producer of the <a href="http://cfd.net.au/home/topic/precious-metal">precious metal</a>. “Quite clearly the strength of the rand is having a nullifying impact on profit, which has a knock-on effect on future cash flow and investment,” Impala Platinum’s chief executive David Brown said in a <a href="http://cfd.net.au/home/topic/telephone-interview">telephone interview</a> today. “A rand weaker than where it is currently would be a lot more beneficial,” Brown added, declining to specify a <a href="http://cfd.net.au/home/topic/preferred-level">preferred level</a> for the currency. <a href="http://cfd.net.au/home/topic/morgan">Morgan</a> Stanley is “neutral” on the rand-dollar exchange rate and “cannot make a strong case to sell the rand outright” against the U.S. currency, said Pleschinger. Instead, the brokerage recommends taking “long” rand positions against the Turkish lira as the African currency’s <a href="http://cfd.net.au/home/topic/carry-trade">carry trade</a> advantage causes it to “outperform” the lira, said Pleschinger. A “long” is a bet an asset will appreciate while a “short” is a <a href="http://cfd.net.au/home/topic/wager">wager</a> on <a href="http://cfd.net.au/home/topic/depreciation">depreciation</a>. South Africa’s currency has returned 35 percent to investors who borrowed in dollars at <a href="http://cfd.net.au/home/topic/low-interest-rates">low interest rates</a> to invest in rand-denominated assets, a process known as the <a href="http://cfd.net.au/home/topic/carry-trade">carry trade</a>. South Africa’s 7 percent <a href="http://cfd.net.au/home/topic/benchmark-interest-rate">benchmark interest rate</a> compares with rates of almost zero in the U.S., <a href="http://cfd.net.au/home/topic/europe">Europe</a> and Japan. Pleschinger declined to provide a forecast for the rand’s exchange rate against <a href="http://cfd.net.au/home/topic/turkey">Turkey</a>’s lira saying it had not yet developed a “properly defined target level” for how the two currencies may trade against each other. To contact the reporter on this story: Garth Theunissen in Johannesburg gtheunissen@bloomberg.net Last Updated: October  9, 2009  14:53 EDT
<p>Source: <a href="http://cfd.net.au/home/20091013/article/rand-to-weaken-3-percent-by-year-end-morgan-stanley-forecasts-by-garth-theunissen">Rand to Weaken 3 Percent by Year-End, Morgan Stanley Forecasts By Garth Theunissen Oct. 9 (Bloomberg</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Valuation: How Do I Value A Business Before Making A Purchase?]]></title>
<link>http://ivoireconsultancy.wordpress.com/2009/11/03/valuation-how-do-i-value-a-business-before-making-a-purchase/</link>
<pubDate>Tue, 03 Nov 2009 09:44:35 +0000</pubDate>
<dc:creator>ivoireconsultancy</dc:creator>
<guid>http://ivoireconsultancy.wordpress.com/2009/11/03/valuation-how-do-i-value-a-business-before-making-a-purchase/</guid>
<description><![CDATA[Image via Wikipedia (1) You can assess a company value by using what we call ‘asset values&#8217;. T]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="zemanta-img" style="display:block;margin:1em;">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Condo_%E2%80%93_Significant_Price_Depreciation_in_West_and_South.png"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/9/97/Condo_%E2%80%93_Significant_Price_Depreciation_in_West_and_South.png/300px-Condo_%E2%80%93_Significant_Price_Depreciation_in_West_and_South.png" alt="Condominium Price Appreciation (percentages) i..." title="Condominium Price Appreciation (percentages) i..." height="204" width="300"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:Condo_%E2%80%93_Significant_Price_Depreciation_in_West_and_South.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>(1)	You can assess a company value by using what we call <strong>‘asset values&#8217;.</strong> This type of valuation uses the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Balance_sheet" title="Balance sheet" rel="wikipedia">balance sheet</a> data to estimate value.<br />
(2)	<strong>Discounted cash flow technique</strong> which forecast a company’s data to estimate the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Present_value" title="Present value" rel="wikipedia">present value</a>.</p>
<p><strong>Asset Values</strong><br />
This form of valuation is centered around the company’s balance sheet value as presented in the latest company’s filling or annual report.<br />
As a prospective buyer, you might want to know that the value of a company’s assets less the value of any liabilities represents the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Net_asset_value" title="Net asset value" rel="wikipedia">net asset</a> value. Net asset value is also called shareholder’s funds or the <a class="zem_slink" href="http://www.wikinvest.com/metric/Book_Value" title="Book Value" rel="wikinvest">book value</a>.</p>
<p>So, we have <strong>net asset value= assets- liabilities</strong><em></p>
<p>The value of the company using this approach will represent any of the following:<br />
the replacement cost of the assets less the liabilities,<br />
the Market value of the assets less the liabilities,<br />
the value of the business to you as a potential purchaser or<br />
<em></em>the liquidation value of the net asset.</p>
<p>So make sure that the value is somewhere between the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Historical_cost" title="Historical cost" rel="wikipedia">historical cost</a> and current <a class="zem_slink" href="http://en.wikipedia.org/wiki/Market_value" title="Market value" rel="wikipedia">market value</a>. The reason is simple; the market value of a company could be much higher than the book value. Let’s say for example, the book value of company ABC is £200,000, i.e. assets less liabilities. However, by putting a current market value on those assets, we may realise that ABC, maybe sold at £400,000, if <a class="zem_slink" href="http://en.wikipedia.org/wiki/Intangible_asset" title="Intangible asset" rel="wikipedia">intangible assets</a> are taken into account. Intangible assetscould be the company’s brand, image, its research and development expenditure, knowledge that are not easily transferrable or replicable.<br />
Imagine if another company wants to acquire Yahoo, the search engine portal. The book value of the company would not suffice. The company’s brand, image, knowledge, R&#38;D expenditure will be taken into account for sure. </p>
<p>Therefore book values alone do not reflect the real value of a company. In case you buy ABC for £400,000 instead of the book value of £200,000, the difference will be called <a class="zem_slink" href="http://en.wikipedia.org/wiki/Goodwill_%28accounting%29" title="Goodwill (accounting)" rel="wikipedia">goodwill</a>, and as a purchaser, the goodwill should appear on your next balance sheet. Although you have spent a lot of money, the good news is you have also the chance to increase your own company’s book value if this is part of an acquisition.</p>
<p>Other important elements, beside intangible assets, to take into consideration are tangible assets. You agree with me that a tangible asset such as a machine would <a class="zem_slink" href="http://www.wikinvest.com/metric/Depreciation" title="Depreciation" rel="wikinvest">depreciate</a> according to accounting estimates of their expected useful lives. A company’s computer, maybe written off over five years.<br />
So let consider the case where the current market value of the computer is lower than the depreciated book value of the same machine. In this instance the tangible asset should be included in the balance sheet at this lower market value, which is interesting from a purchaser point of view. However, the seller&#8217;s accountant will make sure that the two values are almost the same.</p>
<p>Depending in which country you live, accounting principles may differ with regards to tangible assets such as property and lands. Some country would opt for these tangible assets to be carried on the balance sheet at historic cost, while other prefer the assets to be carried at recent market valuation. In the anglo-saxon case, such as the UK, these assets are constantly revalued.</p>
<p>In the second part of this article, we will go over the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Discounted_cash_flow" title="Discounted cash flow" rel="wikipedia">discounted cash flow</a> technique in valuing a company.</em></p>
<div style="margin-top:10px;height:15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/1c40dbd0-6108-40f7-86f5-e5fc1dd903b4/" title="Reblog this post [with Zemanta]"><img style="border:medium none;float:right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=1c40dbd0-6108-40f7-86f5-e5fc1dd903b4" alt="Reblog this post [with Zemanta]"></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Housing Prices and Median Income]]></title>
<link>http://illinoisbankruptcylawyerblog.com/2009/11/02/housing-prices-and-median-income/</link>
<pubDate>Tue, 03 Nov 2009 00:32:42 +0000</pubDate>
<dc:creator>mhedayat</dc:creator>
<guid>http://illinoisbankruptcylawyerblog.com/2009/11/02/housing-prices-and-median-income/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
</item>
<item>
<title><![CDATA[Monetary Policy and Free Trade- Part I]]></title>
<link>http://nalmeida75.wordpress.com/2009/10/22/monetary-policy-and-free-trade-part-i/</link>
<pubDate>Thu, 22 Oct 2009 07:02:56 +0000</pubDate>
<dc:creator>nalmeida75</dc:creator>
<guid>http://nalmeida75.wordpress.com/2009/10/22/monetary-policy-and-free-trade-part-i/</guid>
<description><![CDATA[After the II World War, monetary policy was quickly addressed by the world leaders who proposed to r]]></description>
<content:encoded><![CDATA[After the II World War, monetary policy was quickly addressed by the world leaders who proposed to r]]></content:encoded>
</item>
<item>
<title><![CDATA[MSM: French official says U.S. trying to inflate away debt]]></title>
<link>http://dprogram.net/2009/10/22/msm-french-official-says-u-s-trying-to-inflate-away-debt/</link>
<pubDate>Thu, 22 Oct 2009 05:17:58 +0000</pubDate>
<dc:creator>sakerfa</dc:creator>
<guid>http://dprogram.net/2009/10/22/msm-french-official-says-u-s-trying-to-inflate-away-debt/</guid>
<description><![CDATA[(Reuters) &#8211; The United States is pumping out liquidity to try to inflate away its debt, leadin]]></description>
<content:encoded><![CDATA[(Reuters) &#8211; The United States is pumping out liquidity to try to inflate away its debt, leadin]]></content:encoded>
</item>
<item>
<title><![CDATA[What is a Fixed Asset Consultant?]]></title>
<link>http://fasangie.wordpress.com/2009/10/20/what-is-a-fixed-asset-consultant/</link>
<pubDate>Tue, 20 Oct 2009 15:16:00 +0000</pubDate>
<dc:creator>fasangie</dc:creator>
<guid>http://fasangie.wordpress.com/2009/10/20/what-is-a-fixed-asset-consultant/</guid>
<description><![CDATA[After hosting a clothing party for about 15 of my closest gal pals over the weekend, I realized, the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>After hosting a clothing party for about 15 of my closest gal pals over the weekend, I realized, they don&#8217;t really understand what I do. So I found myself explaining what it is I do and have done for over 10 years, plain and simple. Then it occurred to me. I bet there are a lot of people out there that are unsure of what a Fixed Asset Consultant really is.</p>
<p>My simple explanation of a Fixed Asset Consultant&#8230;</p>
<p style="padding-left:30px;"><strong>Q) Angie, what do you do?</strong></p>
<p style="padding-left:30px;"><strong>A)</strong> I help companies of all sizes and industries determine the best ways to manage and track their fixed assets from start to finish.  Sometimes this requires me to write them an internal policy and procedures manual so that anyone within their company can understand the process.</p>
<p style="padding-left:30px;"><strong>Q) But Angie, what is a fixed asset?</strong></p>
<p style="padding-left:30px;"><strong>A)</strong> A fixed asset is anything from a piece of furniture to a large piece of machinery equipment or a building, a vehicle, etc. that one uses for business and are generally put on a depreciation schedule.  Some are movable and some are not.</p>
<p style="padding-left:30px;"><strong>Q) Why is it important that your clients manage their fixed assets?</strong></p>
<p style="padding-left:30px;"><strong>A)</strong> There are many reason&#8217;s why it&#8217;s important for companies to manage their fixed assets: theft, lower property taxes, receive write-offs on their federal taxes, have more accurate insurance coverage and know where they are actually located in case someone needs it.</p>
<p style="padding-left:30px;"><strong>Q) So are you an Accountant?</strong></p>
<p style="padding-left:30px;"><strong>A)</strong> No, I&#8217;m not an Accountant, I only deal with fixed assets and everything about them.  Fixed Asset&#8217;s is like a niche of accounting.  It&#8217;s my only focus.</p>
<p style="padding-left:30px;"><strong>Q) Are there a lot of Fixed Asset Consultants out there?</strong></p>
<p style="padding-left:30px;"><strong>A)</strong> No, there are only a handful that know what they are doing and do it well.  The firm I work with (and myself) work with every aspect of fixed assets.  Our term is, from cradle to grave.  Hence the reason we travel so much and why I miss out on a lot of parties. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>If you have any questions related to &#8220;what is a fixed asset consultant&#8221;, please feel free to leave your comment and I will do my best to keep it simple.</p>
<p><em>Crazy About Your ASSETS!</em>  Angie.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Make the Most of Small Business Tax Breaks]]></title>
<link>http://webworkerdaily.com/2009/10/16/make-the-most-of-small-business-tax-breaks/</link>
<pubDate>Fri, 16 Oct 2009 16:00:24 +0000</pubDate>
<dc:creator>Georgina Laidlaw</dc:creator>
<guid>http://webworkerdaily.com/2009/10/16/make-the-most-of-small-business-tax-breaks/</guid>
<description><![CDATA[When a friend of mine needed to replace his computer last week, the sales person happened to mention]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://webworkerdaily.wordpress.com/files/2009/10/piggy_bank.jpg"><img class="alignright size-full wp-image-21110" title="piggy_bank" src="http://webworkerdaily.wordpress.com/files/2009/10/piggy_bank.jpg" alt="piggy_bank" width="300" height="249" /></a>When a friend of mine needed to replace his computer last week, the sales person happened to mention that since he was buying the computer for his small business, and it cost more than $1,000, he could claim an extra tax deduction on the purchase.</p>
<p>This tax break forms part of the Australian government&#8217;s economic stimulus package, and although I&#8217;d read about it, I hadn&#8217;t taken much notice of it &#8212; or mentioned it to my friend.</p>
<p>This made me wonder if WWD readers in other countries were unaware of stimulus measures they could use. If so, note that if you&#8217;ve yet to submit your 2009 tax return, you may still be able to take advantage of the following benefits.<!--more--></p>
<p><strong>U.S. Tax Breaks for Small Business</strong></p>
<p>Back in February, the U.S. government announced a series of tax benefits for business as part of the American Recovery and Reinvestment Act. The two that are probably most useful to most WWD readers include depreciation and deduction measures for new equipment purchases made in the 2008-2009 financial year.</p>
<ul>
<li><strong>Deductions</strong>. According to <a href="http://www.businessweek.com/smallbiz/content/feb2009/sb20090220_894603.htm">Karen E. Klein at BusinessWeek</a>, Section 179 of the new law &#8220;allows small businesses to immediately expense new equipment or machinery&#8221; up to a total of $250,000 ($117,000 higher than the previous year&#8217;s limit). The <a href="http://www.irs.gov/newsroom/article/0,,id=208316,00.html">IRS explains that this tax break applies</a> to &#8220;machinery, equipment, vehicles, furniture and other qualifying property placed in service during 2009.&#8221;</li>
<li><strong>Depreciation.</strong> The stimulus package also offered a one-year extension on the 50 percent bonus depreciation the government offers on new equipment purchases, which, Klein says, allows small business owners to &#8220;immediately deduct half of the cost of qualifying purchases rather than depreciating them over time.&#8221; To take advantage of this tax break, you must purchase and start to use the equipment (qualified tangible assets) in 2009.</li>
</ul>
<p><strong>Making the Most of the Breaks</strong></p>
<p>While in July it was <a href="http://www.webcpa.com/news/Stimulus-Tax-Breaks-Helped-Some-Small-Businesses-51070-1.html">reported that these stimulus measures hadn&#8217;t had much effect</a>, since they were introduced at a time when business credit lines were either tight or had dried up completely, it&#8217;ll be interesting to see the final figures once the year&#8217;s small business tax returns have all been submitted.</p>
<p>Speak to your accountant before you submit your tax return to make sure you&#8217;re claiming any purchases you made which are eligible for deduction or depreciation under the law.</p>
<p><em>Have you, or has a small business person you know, used these bonuses as a way to purchase new equipment for a business? Will you be benefiting from the stimulus package on this year&#8217;s tax return?<br />
</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tooth Fairy Heralds Dollar's Demise]]></title>
<link>http://abeginnersguidetofreedom.wordpress.com/2009/10/15/tooth-fairy-heralds-dollars-demise/</link>
<pubDate>Thu, 15 Oct 2009 22:09:17 +0000</pubDate>
<dc:creator>Stephen Smith</dc:creator>
<guid>http://abeginnersguidetofreedom.wordpress.com/2009/10/15/tooth-fairy-heralds-dollars-demise/</guid>
<description><![CDATA[My daughter is bouncing up and down with excitement.  This afternoon she lost another baby tooth (he]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-thumbnail wp-image-397" title="tooth_fairy_esize" src="http://abeginnersguidetofreedom.wordpress.com/files/2009/10/tooth_fairy_esize.jpg?w=120" alt="tooth_fairy_esize" width="120" height="150" />My daughter is bouncing up and down with excitement.  This afternoon she lost another baby tooth (her third to date) and she knows that the tooth fairy will visit her tonight and leave her some money.  I remember the feeling.  As a kid, whenever I lost a tooth I could look forward to finding a shiny new quarter under my pillow the next morning.  </p>
<p>Times have changed. </p>
<p>These days the tooth fairy is a dollar skeptic.  I know this because instead of putting a quarter under the pillow, the tooth fairy now leaves an <span style="text-decoration:underline;"><a href="http://www.blanchardonline.com/blanchard_products/bullion_silver_american_eagle.php"><span style="text-decoration:underline;"><span style="color:#0000ff;">American Eagle</span></span></a></span> for each tooth lost.  By the time my daughter’s adult teeth have all come in, she’ll be sitting on two pounds of silver (and unlike her father, she won’t be able to blow all her tooth fairy loot on Donkey Kong).</p>
<p>Perhaps the tooth fairy has been reading the recent financial news.  <em><span style="text-decoration:underline;"><a href="http://www.independent.co.uk/news/business/news/the-demise-of-the-dollar-1798175.html"><span style="text-decoration:underline;"><span style="color:#0000ff;">The Independent</span></span></a></span></em> reports that Japan, France, Russia, China, and the Gulf Arab states have realized that the American dollar really is backed by the full faith and credit of the US government, and they’d prefer a reliable guarantee instead.  The US government’s debt is <span style="text-decoration:underline;"><a href="http://online.wsj.com/article/SB10001424052748704107204574470961505506386.html?mod=djemEditorialPage"><span style="text-decoration:underline;"><span style="color:#0000ff;">expected to reach 100% of GDP</span></span></a></span> within the next two years, and “Helicopter” Ben Bernanke has <span style="text-decoration:underline;"><a href="http://www.federalreserve.gov/releases/h41/Current"><span style="text-decoration:underline;"><span style="color:#0000ff;">created trillions of new dollars</span></span></a></span> in the past year alone.  Given the astronomical amounts of money some of these foreign central banks have loaned the Feds to cover their wild-eyed bipartisan spending spree, one can understand why they might not appreciate being paid back with a <span style="text-decoration:underline;"><a href="http://www.nypost.com/p/news/business/dollar_loses_reserve_status_to_yen_hFyfwvpBW1YYLykSJwTTEL;jsessionid=65E301CF47ED50D15170F8D6530791C5"><span style="text-decoration:underline;"><span style="color:#0000ff;">rapidly depreciating currency</span></span></a></span> like the US greenback.  This may explain in part the recent uptick in the price of gold, which has been mentioned as a possible replacement for the dollar in international transactions. </p>
<p>It’s as if foreign central banks (and the rest of us, for that matter) are locked in an international game of musical chairs.  When the music stops, the last one holding dollars loses.  It won’t be easy for the countries that are sitting on trillions of US dollar reserves to divest themselves of their holdings without accelerating the currency’s demise, but for my part I hope they figure it out soon &#8211; and that they let me know how to do it, too.  I think I hear the music winding down, and I’m all out of baby teeth to leave under the pillow.</p>
<p><strong> </strong></p>
<p>(<em>Tooth Fairy</em> painting by <span style="text-decoration:underline;"><a href="http://jenedypaigepaintings.blogspot.com/2007/03/tooth-fairy.html"><span style="text-decoration:underline;"><span style="color:#0000ff;">Jenedy Paige</span></span></a></span>).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kapital vol. 3 part 1 chapter 6: The Effect of Price Fluctuations]]></title>
<link>http://kapitalism101.wordpress.com/2009/10/12/kapital-vol-3-part-1-chapter-6-the-effect-of-price-fluctuations/</link>
<pubDate>Tue, 13 Oct 2009 03:23:47 +0000</pubDate>
<dc:creator>kapitalism101</dc:creator>
<guid>http://kapitalism101.wordpress.com/2009/10/12/kapital-vol-3-part-1-chapter-6-the-effect-of-price-fluctuations/</guid>
<description><![CDATA[Part 1 Chapter 6 (This post is part of an ongoing project: a close reading of volume 3 of Kapital, o]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Part 1 Chapter 6</p>
<p>(This post is part of an <a href="http://kapitalism101.wordpress.com/kapital-volume-3/">ongoing project:</a> a close reading of volume 3 of Kapital, one post per chapter. I hope that others who are tackling this book for the first time might find my summaries and thoughts useful. I also hope that others might leave their own thoughts, criticisms, help, etc. here so that this blog might become a good collective resource for those brave souls who take on Vol. 3.)</p>
<p><img class="aligncenter size-medium wp-image-294" title="Photo 5" src="http://kapitalism101.wordpress.com/files/2009/09/photo-5.jpg?w=300" alt="Photo 5" width="300" height="225" /></p>
<p>The Effect of Price Fluctuations</p>
<p>1. Fluctuations in the Price of Raw Materials, and their Direct Effects on the Rate of Profit</p>
<p>We begin with a repetition of the observation from the previous chapter that changes in prices of raw materials change the cost-price and therefore the rate of profit. (Marx is mostly referring to raw materials that form the circulating part of constant capital, not fixed capital, though later he can&#8217;t help but move briefly into this topic.) Higher cost-price means lower rate of profit and vice versa. Thus the cost of transport, the efficiency of world trade and the tariff system all play an important role in the way they effect raw material prices and profit rates.</p>
<p>Since raw materials pass directly into the product while fixed capital&#8217;s value is transfered a little at a time over the life of the fixed capital this means that price fluctuations in raw materials have more of a direct effect on prices and profit rates than fluctuations in fixed capital costs. As prices of commodities fluctuate so the demand for them fluctuates, causing expansions and contractions in the supply of the commodity on the market.</p>
<p>Marx, giving us a sneak preview into the soon-to-come explanation of prices-of-production, mentions here that these fluctuations of price would not be quite so extreme in a situation of average profit rates and prices of production. We are still assuming that commodities trade at their values. But if they traded at their prices of production instead, the formation of average profit rates would slightly soften this fluctuation in price caused by the fluctuation of raw material prices.</p>
<p>The increasing productivity of labor means that the same amount of workers produce more product per hour. This increasing productivity requires an increase in the raw materials. If workers are making twice as many shoes as before they need twice as much leather, rubber and thread. Thus the price of the commodity contains less and less labor, and less and less fixed capital value but more and more raw material value. Marx refers to this fall in the value added, per commodity, by labor and fixed capital as a &#8220;falling tendency&#8221; only counter-balanced by a decrease in the price of raw materials.</p>
<p>Marx ends this first section by noting (I think I am understanding this correctly) that when raw material prices grow inordinately high this causes manufacturers to make better use of waste product. We may see a similar process in our lifetime if prices in oil continue to fluctuate in ways the disrupt production.</p>
<p>II. APPRECIATION, DEPRECIATION, RELEASE AND TIE-UP OF CAPITAL</p>
<p>Appreciation or depreciation of capital refer to changes in the value of any of the factors of production after they have been purchased due to general changes in the economy. For instance, after purchasing a 100 barrels of crude oil the market price of oil might go up due to, say, a new war in the Middle East. What does this appreciation in the already purchased raw material inputs mean for the capitalist who has already purchased this oil? Or a capitalist may spend millions of dollars on a new, state-of-the-art, factory that makes cars only to find out that ten years later foreign car companies have invested in even more state-of-the-art factories at lower prices. How does this depreciation of fixed capital effect the profit rate? Marx intends to tell us in this chapter.</p>
<p>He also intends to tells us about the tie-up and release of capital by which he means this: In order for reproduction to occur a capitalist must devote a certain portion of the price of his products to reinvesting back into constant and variable capital. If he sells a football for $10 he can&#8217;t spend that entire $10 on booze and comic books. A certain portion of that $10 is &#8220;tied-up&#8221; in variable and constant capital. Now, if the price the food goes down and wages fall, or if the prices of raw materials fall this means that some of this previously tied-up capital is &#8220;released&#8221;. The capitalist can then choose to spend all of this released capital on loose-living and luxury goods or to reinvest in expanding production.</p>
<p>At the beginning of the chapter Marx notes that a full understanding of these factors, appreciation, depreciation, tie-up and release, really requires an analysis of the credit system and the world market. These are topics Marx was reserving for much later in his argument. Unfortunately he never got to them.</p>
<p>Now you may be thinking, &#8220;Didn&#8217;t we just spend a really long time investigating the effects of changes in the prices of constant and variable capital on the profit rate?&#8221; Yes we did. All of those prior investigations assumed that changes in prices happened between production periods, as if capitalists bought inputs at the beginning of the week, turned them into commodities which they sold at the end of the week, and then stepped into the market on Monday to encounter a whole new set of prices. In reality, at any given time parts of the total capital are in the market looking to buy or sell goods while other parts are in production making goods. This is why we need to look at appreciation and depreciation separately from our previous analysis. Remember that the law of value is the law whereby the production is regulated indirectly through market exchange. We produce with an eye on exchange. But we don&#8217;t know the full value of our product until we realize it in exchange. While one thing is happening in the private sphere of production quite another might be happening in exchange. Values are constantly changing as changes in productivity, circulation, and politics (tarifs, wars, etc.) effect the socially necessary labor time, socially necessary turnover time, monopoly pricing, scarcity rents, etc. (When we add the credit system to the mix an entirely new aspect of price fluctuations are introduced into the picture.)</p>
<p>If the price of cotton goes up then the prices of commodities that contain cotton go up. If I own a t-shirt factory and have already bought a year&#8217;s worth of cotton I will actually benefit from the appreciation of my raw materials. I can sell t-shirts at the new market price caused by the increased price of cotton. Because I bought my cotton at the lower, pre-appreciation, price I can pocket the difference as profit. The appreciation of my stock of cotton actually offsets the fall in profit usually caused by a rise in constant capital values. But if all the competing t-shirt making firms have also purchased a year&#8217;s worth of cotton the existence of cheaper cotton in our stock piles will press the price of t-shirts below this new appreciated price. The opposite process takes place if cotton prices fall.</p>
<p>This all make for some confusing results. If my capital looses value through depreciation this can still mean that my profit rate goes up since the profit rate is the excess of surplus value above the value of total capital. If my capital gains in value my profit rate my go down for the same reasons.</p>
<p>A discussion of appreciation and depreciation of fixed capital can&#8217;t happen without a theory of ground rent so this will have to wait till later in the book. But Marx makes some remarks about machinery here. If the use-value of machinery is quickly going out of date, this causes machines to loose their value- to depreciate- before the labor contained in them can be fully transferred into commodity form. To take my previous example of the US auto-industry, if I build a fancy new Ford factory in 1940 in Detroit and the Japanese build a much fancier and cheaper factory 15 years later this makes my machines depreciate. I can&#8217;t sell my cars at prices that will allow me to recoup my investments in fixed capital. I have to sell at the lower market price set by the Japanese. (Or I can resort to tariffs, lay-offs, attacks on unions, &#8220;buy American&#8221; campaigns, right-wing populism, etc.) Marx calls this &#8220;moral depreciation&#8221;. This means that when new machinery comes on-line there is often an urgent need to get the most product out of them before they depreciate. In Marx&#8217; time this meant the prolongation of the working day in order to work the machine as much as possible before it became obsolete. We see similar logic today with the use of night-shifts and overtime in factories. (Slightly related is the desperate urgency to get the most profit out of intellectual property before the monopoly rents associated with it disappear.) This all means that the newest entrants into the market are often not the ones that profit from a new technology. They often go out of business because they can&#8217;t compete with new competitors. This devalues their fixed capital. The winners buy up this devalued capital at bargain-basement prices which allows them to have a huge profit margin.</p>
<p>Here, in a few paragraphs Marx lays out the part of the picture of the accumulation cycle that characterizes capitalist crisis. It is the coupling of this picture with the Falling Rate of Profit which allows us to see the way the &#8220;counter-vailing influences&#8221; against a falling profit rate play out in real time. We saw a few chapters back that the falling profit caused by an increase in organic composition can be offset by a falling price of constant capital. Here Marx shows how this works in a world in which huge amounts of investment go into fixed capital. When fixed capital prices fall we get moral depreciation which means a falling rate of profit which can only be reconciled by crisis and devaluation. This line of argument fits quite well with the description of the US economy in the last 70 years, especially the auto-industry. Marxists like Andrew Kliman, David McNally, Allen Freeman, David Harvey and others point to this moral depreciation of fixed capital as a key element in explaining the current crisis. It is this phenomena that Robert Brenner mistakes for competition in his competition-centered account of crisis in &#8220;The Economics of Global Turbulence.&#8221;</p>
<p>________________________</p>
<p>&#8220;There is still variable capital to be considered. &#8220;</p>
<p>Obviously- if the means of subsistence appreciate then wages must go up and surplus value falls. The opposite happens with depreciation.</p>
<p>If a capitalist is used to reinvesting so much a week in wages and the wage begins to fall this will then free up some of that variable capital. Some of the variable capital is &#8220;released&#8221; and become surplus value. This can be used for new golf clubs or vacations to Buenos Aires or it can be reinvested in production. This makes it possible to expand production by hiring more workers to exploit. The opposite happens with an appreciation of wages. More capital is &#8220;tied up&#8221; in variable capital which means that if production is to continue at the same scale money must be taken out of the surplus value and spent on variable capital. The rate of surplus value and rate of profit falls.</p>
<p>Marx makes the distinction in this section between the effects of this appreciation or depreciation on newly invested capital or previously invested capital. If depreciation effects a newly invested capital all this does is to change the rate of surplus value and profit. If it effects a previously invested capital this depreciation releases variable capital for new investments.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&#8220;The release and tie-up of variable capital, just analysed, is the result of a depreciation or appreciation of the elements of variable capital, that is, of the cost of reproducing labour-power.&#8221;</p>
<p>But variable capital can be released by changes in productivity as well. If productivity increases make is possible to get the same amount of commodities out of half as many laborers this means a releases of variable capital. However, as we have already seen, this most often goes along with an increased need for raw materials which means a tie-up in constant capital costs. The relative amounts of the release of variable capital and the tie-up of constant capital determine the effect on profit rates.</p>
<p>Usually a tie-up of more constant capital goes along with increasing productivity but it can also correspond to the opposite. In agriculture, if the fertility of land is declining, more and more constant capital will be needed to get the same amount of product from the land. Here declining productivity ties-up more constant capital.</p>
<p>As constant capital in the form of raw materials starts to take on more and more of the day-to-day cost of production, price changes in raw materials have more violent effects on profit rates. Fixed capital costs are long-run costs and don&#8217;t depend much on the day to day fluctuations of prices. But raw materials must constantly be replenished and thus can cause endless fluctuations.</p>
<p>This is especially true of raw materials whose production involves natural forces out of the control of man. Agriculture is the chief example here. A bad harvest, a blight, etc. can make agricultural prices fluctuate. The products of nature are not nearly as steady and predictable as the products of purely human labor in other spheres of production. Agricultural production also can&#8217;t immediately increase or decrease to meet fluctuations in demand. Production is planned around yearly crop  cycles and can&#8217;t be adjusted until the beginning of the next planting season. This means that there can be shortages and gluts of agricultural goods.</p>
<p>Fixed capital tends to grow steadily- or even rapidly. This means that there is always a growing need for raw material inputs. This leads to overproduction of machinery and under-production of agricultural goods. And this means higher prices in the agricultural sphere.</p>
<p>In times of spikes in raw material prices capitalists often band together in associations to stimulate production of raw materials. This is one of many ways capitalists act collectively as a class when they are threatened as a class. But as soon as production returns to normal the capitalists return to open competition on the market and their ideology of &#8220;free trade&#8221;. Funny how disposable economic liberalism is when the capitalist class is threatened. Funny also how the libertarian/neo-liberal/Austrian argument is always that these trusts and other such associations are an imposition upon a rationally functioning market when it is clear from this and countless other examples that just the opposite is the case: these are attempts by the capitalist class to impose order upon an irrational market. Marx concludes this segment by saying that capitalism is totally irrational from the standpoint of agricultural production. It requires &#8220;either the hand of the small farmer living by his own labour or the control of associated producers.&#8221; Is it no wonder that today the agricultural industry depends on massive subsidies and tariffs?</p>
<p>_______________________________________________</p>
<p>The last bit of this section lists examples of the above arguments. There are 1858 factory reports about spindle and looms growing faster than sheep. From the same year Marx quotes reports of the cotton trade not being able to keep up with the increase in self-acting mule spindles and looms. This leads us to the 3rd and final part of the chapter.</p>
<p>III. GENERAL ILLUSTRATION. THE COTTON CRISIS OF 1861-65</p>
<p>This might be painful. I have more or less just summarized the history Marx gives. Why have I done this and should you bother reading it? I don&#8217;t know the answer to either question. I think I did it to help me understand the gist of the argument. Feel free to skip all of it. I will make a few remarks at the end in summary.</p>
<p>Preliminary History 1845-60<br />
1845: &#8220;Golden Age&#8221; of cotton. Cotton prices are low and factories are growing.<br />
1846: Factory capacity has already outpaced cotton production. Cotton prices are rising and factories are working short-time (less than full days) because of shortages. Finished cotton products have saturated the market which means that their prices can&#8217;t rise to compensate for the rise in raw material prices.<br />
1847, October: A money panic, shortages continue. I assume that the money panic doesn&#8217;t relate to the cotton problem. Marx doesn&#8217;t expand much on this.<br />
1849: A recovery happens. Perhaps some of the demand which is stimulating production comes from consignments&#8230; (Here we allude to the way credit can displace crisis). Cotton prices have fallen considerably allowing production to continue. This fall in price is not explained in the manuscript (unless I am overlooking something.) As the recovery accelerates large producers start to stockpile cotton supplies, causing anxiety for smaller producers.<br />
1850: Scarcity of cotton resumes and prices rise.<br />
1853 April: Prosperity again.<br />
1853 October: Overproduction of cotton. Depression in the industry.<br />
etc. etc.</p>
<p>1861-64. American Civil War. Cotton Famine. The Greatest Example of an Interruption in the Production Process through Scarcity and Dearness of Raw Material</p>
<p>Here Marx discusses the history of the Cotton Famine in England which was caused by a blockade on American cotton imports in 1861 after the start of the US civil war. There was a huge shortage of cotton just at a time when the market had been over-saturated through overproduction. A severe crisis ensued and huge numbers of workers lost their jobs and had to go on public assistance. Wikipedia has a good, brief history: http://en.wikipedia.org/wiki/Lancashire_Cotton_Famine</p>
<p>1860: The massive expansion of investments in mills and other fixed capital continues while a shortage of cotton begins. (I assume this shortage comes from people hoarding cotton in anticipation of the blockade the following year.) Prices are rising and people are beginning to look for new sources of cotton. There is talk of expanding railroads to India in search of cheaper raw materials. India is already helping absorb the excess production from England. This is still the two-part function of a colony today: absorb excess capital, provide cheap raw materials.<br />
1861: It becomes obvious that manufacturers overproduced in the previous year. It takes several years for the market to absorb all this excess production. Cotton prices are way too high due to the blockade and there is a huge shortage of cotton on the market. Many of the bigger firms stockpiled cotton. The value of  this hoarded cotton appreciated  which averted the usual depreciation of the total capital that we might expect in a crisis.</p>
<p>Manufacturers begin adulterating their cotton products by adding other stuff to the cotton in the spinning process. They weave in flour which increases the weight of the products but, of course, lessens their use-value. These substitute materials are harder to work with and break more and so this lowers the productivity of labor. Hours are decreased, wages start to fall and strikes break out.</p>
<p>1862: Unemployment is high, in some districts as high as 15% with larger numbers working short-time. Many producers are small-scale capitalists and they are hit particularly hard by the crisis. Inferior cotton is being used everywhere which slows down production.<br />
1863: The inferior cotton slows down production thus having a severe effect on wages. The cotton workers are on a piece-rate system. This means that the slower they work the less they earn. Wages sink to almost nothing. Meanwhile workers are being fined for making inferior products.<br />
Unemployment and underemployment sky-rocket. The public relief committees employ workers at poverty wages in public works: street paving, rock breaking, etc. Any worker who complains about the wage is struck from the relief rolls. Marx points out that this drastic devaluing of labor power is a great gift to the capitalist class. Urban development is given a free gift from the industrial reserve army.<br />
1884: The public works employ so many people that is becomes hard to keep wages down. The reserve army of labor dwindles and strikes break out in factories. This will not do for the bourgeois who protest until the Public Works Act is repealed. Though the capitalists class looks to free markets and global trade to eventually bring cotton supplies back to normal and absorb surpluses they don&#8217;t advocate the mobility of labor. The bourgeoise work against allowing emigration of workers from the cotton factory districts.</p>
<p>And here the manuscript breaks off&#8230;</p>
<p>What can we learn from this history? Obviously it is a great example of many of the themes of the chapter: changing prices of raw materials, appreciation and depreciation, agricultural production cycles not synching up with the rhythm of capital accumulation&#8230; I&#8217;m sure that in Marx&#8217;s time there were diverse opinions as to the cause of the crisis. For many it was probably seen as the result of external political causes. But Marx brilliantly outlines the variety of complicated factors the all weave themselves together. We notice that he begins his story before the blockade caused by the American Civil War. Thus he already establishes a cyclical rhythm of boom and bust caused by over-production and the delay in agricultural production to respond to the market signals being given by the industrial sector. Once the external shock of the cottage shortage is introduced, this boom and bust cycle is taken to an extreme. Not only is Marx able to highlight the way in which this external shock merely amplifies an already existing industrial-agricultural cycle, but he also makes some keen observations about the way in which the capitalist class acts as a class to preserve its class interests in such times of crisis. We might take these themes to heart in our own time. It would be easy to blame the crisis of the 1970&#8217;s on the OPEC crisis as many historians do. It would be easy to blame our present crisis just on the sub-prime bubble, or our own oil prices. But the problems caused by these fluctuations in prices only serve to expose much more fundamental rhythms of capitalist accumulation. As in the cotton crisis we can see the capitalist class today acting as a class, through the the state, to preserve itself.</p>
<p><a href="http://kapitalism101.wordpress.com/2009/10/18/das-kapital-vol-3-part-1-chapter-7/">next chapter </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Depreciation Adjustments in Sage FAS]]></title>
<link>http://fasangie.wordpress.com/2009/10/13/depreciation-adjustments-in-sage-fas/</link>
<pubDate>Mon, 12 Oct 2009 23:19:34 +0000</pubDate>
<dc:creator>fasangie</dc:creator>
<guid>http://fasangie.wordpress.com/2009/10/13/depreciation-adjustments-in-sage-fas/</guid>
<description><![CDATA[Once all your data is either &#8211;  a) in Sage FAS from being uploaded through a data&#8217;s conv]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Once all your data is either &#8211;  a) in Sage FAS from being uploaded through a data&#8217;s conversion process or b) manually changed (changing either the cost, method, life, etc.), there are only three types of adjustments you can set Sage FAS Asset Accounting to take:</p>
<ol>
<li><strong>Immediate</strong> -  the next time you run depreciation in Sage FAS Asset Accounting, the system will automatically true up the adjustment immediately for you. </li>
<li><strong>Post Recovery</strong> - after the assets estimated life has expired, the adjustment amount needed will show it&#8217;s pretty little head as the NBV.  The very next time you run depreciation AFTER it&#8217;s useful life has expired, it will true up.  Example: est life of 3 years/36 months &#8211; month 36 you will see the remaining NBV.  When you run depreciation on month 37, FAS will perform a true up.</li>
<li><strong>None</strong> - well&#8230; don&#8217;t second guess yourself silly, FAS will do nothing.  This means, your assets that need a true up will always have a NBV forever&#8230; until you dispose of it.</li>
</ol>
<p>There are only two types of adjusted assets: over depreciated asset(s), or an under depreciated asset(s).  No worries, should you set your adjustment to either immediate or post-recovery in Sage FAS Asset Accounting, the system is pretty darn good at reporting on those assets that needed a true-up.  Reason number&#8230;. I don&#8217;t know, a lot; why Auditors love this solution!</p>
<p><strong>Fun Fact</strong>: the big 4 uses and recommends the Sage FAS solution!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[multiple inventory valuation methods]]></title>
<link>http://eresourceerpinfo.wordpress.com/2009/10/09/multiple-inventory-valuation-methods/</link>
<pubDate>Fri, 09 Oct 2009 04:30:15 +0000</pubDate>
<dc:creator>eresourceerpinfo</dc:creator>
<guid>http://eresourceerpinfo.wordpress.com/2009/10/09/multiple-inventory-valuation-methods/</guid>
<description><![CDATA[Influence decisions on pricing and profitability Cost Reporting Management Eresource ERP Cost Manage]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Influence decisions on pricing and profitability</p>
<p>Cost Reporting Management</p>
<p>Eresource ERP Cost Management feature provides visibility of cost at a single market place. With competition </p>
<p>increasing the pressure on margins, your business needs accurate and detailed manufacturing cost reporting for </p>
<p>effective business management. </p>
<p>Eresource ERP provides extensive cost information at several levels that helps the business owner to identify cost </p>
<p>elements and reduce product cost. Product Manufacturing costing elements in eresource is formulated based of </p>
<p>different parameters, including, routing, machines, production volumes, batch sizes, depreciation, labour, material </p>
<p>cost, admin cost, selling cost, etc. </p>
<p>Further eresource ERP support multiple inventory valuation methods so you can choose the costing method that </p>
<p>best reflects your company&#8217;s business. For example, eresource ERP has features that let your company compare </p>
<p>estimates and production costs for different work centers, machines, employees, and order quantities while </p>
<p>monitoring overtime, indirect hours, subcontracted jobs and other costs. </p>
<p>Additionally, you can choose standard, LIFO (Last in first out), FIFO (First in first out), moving average unit, or lot </p>
<p>costing, and costing methods can be assigned by item. </p>
<p>Eresource ERP provides extensive information about production cost at several levels, which gives you the visibility </p>
<p>you need to identify cost drivers and reduce product costs. </p>
<p>For more information kindly visit http://www.eresourceerp.com/Cost-Reporting-Management.html</p>
<p>OR contact us at<br />
TMA House, 1st Floor,<br />
Road No 16, Plot No. 6,<br />
Wagle Industrial Estate,<br />
Thane (West) 400 604, Maharashtra<br />
Tel: +91 22 25827692<br />
      +91 22 25828775<br />
      +91 22 65130234<br />
e-mail (Sales): sales@eresourceerp.com<br />
e-mail (Help Desk): helpdesk@eresourcerp.com </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hey Lance,]]></title>
<link>http://wereconcerned.wordpress.com/2009/10/07/hey-lance/</link>
<pubDate>Thu, 08 Oct 2009 01:09:14 +0000</pubDate>
<dc:creator>drfeel</dc:creator>
<guid>http://wereconcerned.wordpress.com/2009/10/07/hey-lance/</guid>
<description><![CDATA[Hey buddy, There&#8217;s this term in economics called depreciation, and we&#8217;re concerned you]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hey buddy,</p>
<p>There&#8217;s this term in economics called depreciation, and we&#8217;re concerned you&#8217;re not aware of it.</p>
<p>Let&#8217;s put it this way.  When you came out, you were a hot commodity, you got yourself a smoking hot boyfriend, and then you did nothing&#8230;</p>
<p><img class="aligncenter size-medium wp-image-43" title="reichen_lehmkul" src="http://wereconcerned.wordpress.com/files/2009/10/reichen_lehmkul.jpg?w=300" alt="reichen_lehmkul" width="300" height="300" /></p>
<p>&#8230;and he dumped you.</p>
<p>&#8230;but, that was o.k. You rebounded with a hot Brazilian model (o.k. Pedro&#8217;s skull was a little large)&#8230;<br />
<img class="aligncenter size-full wp-image-44" title="lance_pedro" src="http://wereconcerned.wordpress.com/files/2009/10/lance_pedro.jpg" alt="lance_pedro" width="131" height="175" /></p>
<p>Now you&#8217;re dating some reportedly straight, fugly, personal trainer named Sebastian Leal.</p>
<p><img class="aligncenter size-medium wp-image-45" title="lancebassgreencard1.0.0.0x0.445x387" src="http://wereconcerned.wordpress.com/files/2009/10/lancebassgreencard1-0-0-0x0-445x387.jpeg?w=300" alt="lancebassgreencard1.0.0.0x0.445x387" width="300" height="260" /></p>
<p>We&#8217;re sure that, at heart, you&#8217;re still the same <span style="text-decoration:line-through;">doughy bottom</span> nice guy that you always were, but your once hot property has decidedly cooled.  You should probably cut your losses and marry the straight dude because you&#8217;re one step away from your next long-term relationship being this:<br />
<img class="aligncenter size-medium wp-image-46" title="Lance Bass (L) and comedian Kathy Griffin attend the 944 Los Ang" src="http://wereconcerned.wordpress.com/files/2009/10/0831-daily-gallery11.jpg?w=212" alt="Lance Bass (L) and comedian Kathy Griffin attend the 944 Los Ang" width="212" height="300" /></p>
<p>We&#8217;re concerned!<br />
(and we don&#8217;t think we&#8217;re being unreasonable, here!)</p>
<p>XOXO, Peench and Dr. Feel</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
