<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ben&#039;s Digital</title>
	<atom:link href="http://bensdigital.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bensdigital.wordpress.com</link>
	<description>there are 10 kinds of people: the one understands binary and other who does not!</description>
	<lastBuildDate>Mon, 25 Jul 2011 19:52:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bensdigital.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ben&#039;s Digital</title>
		<link>http://bensdigital.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bensdigital.wordpress.com/osd.xml" title="Ben&#039;s Digital" />
	<atom:link rel='hub' href='http://bensdigital.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Use ProgressBar, BackgroundWorker &amp; LisBox to display all the files w/i the directory</title>
		<link>http://bensdigital.wordpress.com/2011/07/25/119/</link>
		<comments>http://bensdigital.wordpress.com/2011/07/25/119/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 19:52:15 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=119</guid>
		<description><![CDATA[Use ProgressBar, BackgroundWorker &#38; LisBox to display all the files w/i the directory and simulation of processing each file using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; using System.IO; namespace WindowsFormsApplication12 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=119&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Use ProgressBar, BackgroundWorker &amp; LisBox to display all the files w/i the directory<br />
and simulation of processing each file</p>
<p><code><br />
using System;<br />
using System.Collections.Generic;<br />
using System.ComponentModel;<br />
using System.Data;<br />
using System.Drawing;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Windows.Forms;<br />
using System.Threading;<br />
using System.IO;</p>
<p>namespace WindowsFormsApplication12<br />
{<br />
    public partial class Form1 : Form<br />
    {<br />
        public Form1()<br />
        {<br />
            InitializeComponent();<br />
        }</p>
<p>        private void Form1_Load(object sender, System.EventArgs e)<br />
        {<br />
            // Start the BackgroundWorker.<br />
            progressBar1.Minimum = 0;<br />
            progressBar1.Maximum = GetProgressMax();<br />
            backgroundWorker1.RunWorkerAsync();<br />
        }</p>
<p>        protected int GetProgressMax()<br />
        {<br />
            int i = 0;<br />
            DirectoryInfo di = new DirectoryInfo(@"C:\Documents and Settings\user\My Documents\eric scheduler\ci review\Debug-Full\ContractReviewLog");<br />
             if (di.Exists)<br />
             {<br />
                 i = di.GetFiles("*.txt").Length;<br />
             }</p>
<p>            return i;<br />
        }</p>
<p>        private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)<br />
        {<br />
           /* for (int i = 1; i &lt;= 100; i++)<br />
            {<br />
                // Wait 100 milliseconds.<br />
                Thread.Sleep(100);<br />
                // Report progress.<br />
                backgroundWorker1.ReportProgress(i);</p>
<p>            }*/</p>
<p>            DirectoryInfo di = new DirectoryInfo(@&quot;C:\Documents and Settings\user\My Documents\eric scheduler\ci review\Debug-Full\ContractReviewLog&quot;);</p>
<p>            if (di.Exists)<br />
            {<br />
                int i = 0;<br />
                foreach (FileInfo fi in di.GetFiles(&quot;*.txt&quot;))<br />
                {<br />
                    backgroundWorker1.ReportProgress(i);<br />
                    i++;<br />
                    Thread.Sleep(100);<br />
                    listBox1.Items.Add(fi.Name);<br />
                }<br />
            }            </p>
<p>        }</p>
<p>        private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)<br />
        {<br />
            // Change the value of the ProgressBar to the BackgroundWorker progress.<br />
            progressBar1.Value = e.ProgressPercentage;<br />
            // Set the text.<br />
            //this.Text = e.ProgressPercentage.ToString();<br />
            label1.Text = &quot;percent: &quot; + e.ProgressPercentage.ToString() + &quot;%&quot;;<br />
            label1.Refresh();<br />
        }<br />
    }<br />
}</p>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=119&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2011/07/25/119/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>Are You Ready For Google+? Need an invite?</title>
		<link>http://bensdigital.wordpress.com/2011/07/24/are-you-ready-for-google-need-an-invite/</link>
		<comments>http://bensdigital.wordpress.com/2011/07/24/are-you-ready-for-google-need-an-invite/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 15:48:20 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Google+]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=105</guid>
		<description><![CDATA[Do you need a google+ (google plus) invite? invitation give away, please leave your NAME and GMAIL address in the comment section<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=105&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://bensdigital.files.wordpress.com/2011/07/gpi1.png?w=510" alt="" title="gpi"   border="0" class="alignleft size-full wp-image-116" /><br />
Do you need a google+ (google plus) invite? invitation give away, please leave your NAME and GMAIL address in the comment section.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=105&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2011/07/24/are-you-ready-for-google-need-an-invite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>

		<media:content url="http://bensdigital.files.wordpress.com/2011/07/gpi1.png" medium="image">
			<media:title type="html">gpi</media:title>
		</media:content>
	</item>
		<item>
		<title>2-D Array + Sum up Horizontally &amp; Vertically</title>
		<link>http://bensdigital.wordpress.com/2011/06/20/2-d-array-sum-up-horizontally-vertically/</link>
		<comments>http://bensdigital.wordpress.com/2011/06/20/2-d-array-sum-up-horizontally-vertically/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 04:04:32 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=102</guid>
		<description><![CDATA[public class Matrix { public static void main(String[] args) { int[][] x = new int[8][8]; int[] y = new int[x.length]; int[] z = new int[x.length]; for(int i=0; i&#60; x.length; i++) { for(int j=0; j &#60; x[i].length; j++) { x[i][j]=(int)(Math.random()/Math.random()); } } System.out.println(); System.out.println(&#34;2-D Random Integer Array!&#34;); int counter=0; for(int i=0; i&#60; x.length; i++) { for(int <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=102&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code><br />
public class Matrix<br />
{<br />
    public static void main(String[] args)<br />
    {<br />
        int[][] x = new int[8][8];<br />
        int[] y = new int[x.length];<br />
        int[] z = new int[x.length];</p>
<p>        for(int i=0; i&lt; x.length; i++)<br />
        {<br />
            for(int j=0; j &lt; x[i].length; j++)<br />
            {<br />
                x[i][j]=(int)(Math.random()/Math.random());<br />
            }<br />
        }   </p>
<p>        System.out.println();<br />
        System.out.println(&quot;2-D Random Integer Array!&quot;);<br />
        int counter=0;</p>
<p>         for(int i=0; i&lt; x.length; i++)<br />
        {<br />
            for(int j=0; j &lt; x[i].length; j++)<br />
            {<br />
               System.out.print(x[i][j]+&quot; &quot;);<br />
               y[i] +=x[i][j];<br />
               z[i] +=x[j][i];<br />
            }</p>
<p>            System.out.println();<br />
        }</p>
<p>         System.out.println();<br />
         System.out.println(&quot;Sum 2-D Random Integer Array Horizontally!&quot;);</p>
<p>         for(int i=0; i&lt;y.length; i++)<br />
         {<br />
             System.out.println(y[i]);<br />
         }</p>
<p>         System.out.println();<br />
         System.out.println(&quot;Sum 2-D Random Integer Array Vertically!&quot;);<br />
         for(int i=0; i&lt;z.length; i++)<br />
         {<br />
             System.out.println(z[i]);<br />
         }<br />
    }<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=102&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2011/06/20/2-d-array-sum-up-horizontally-vertically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Raw Bar Chart</title>
		<link>http://bensdigital.wordpress.com/2011/05/10/sql-server-raw-sql-bar-chart/</link>
		<comments>http://bensdigital.wordpress.com/2011/05/10/sql-server-raw-sql-bar-chart/#comments</comments>
		<pubDate>Tue, 10 May 2011 21:42:10 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/2011/05/10/sql-server-raw-sql-bar-chart/</guid>
		<description><![CDATA[PRINT '==&#62;USER VISIT BAR CHART DB DIV5&#60;==&#039; SELECT TOP 10* FROM ( SELECT CONVERT(DATETIME,CONVERT(VARCHAR,[LoginDate],101)) LoginDate ,COUNT(*) LoginFreq ,LoginChart =CASE WHEN SUBSTRING(REPLACE(SPACE(COUNT(*)/10),&#039; &#039;,&#039;&#124;&#039;),1,200) =&#039;&#039; THEN &#039;&#124;&#039; ELSE SUBSTRING(REPLACE(SPACE(COUNT(*)/10),&#039; &#039;,&#039;&#124;&#039;),1,200) END FROM [DB].[dbo].[UserLoginView] WHERE Application=&#039;DB&#039; AND MONTH(LoginDate) = MONTH(GETDATE()) AND YEAR(LoginDate)=YEAR(GETDATE()) GROUP BY CONVERT(DATETIME,CONVERT(VARCHAR,[LoginDate],101)) --ORDER BY 1 DESC )X ORDER BY 1 <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=97&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code></p>
<p>PRINT '==&gt;USER VISIT BAR CHART DB DIV5&lt;==&#039;<br />
SELECT TOP 10* FROM<br />
(<br />
SELECT CONVERT(DATETIME,CONVERT(VARCHAR,[LoginDate],101)) LoginDate<br />
      ,COUNT(*) LoginFreq<br />
      ,LoginChart<br />
      =CASE<br />
      WHEN SUBSTRING(REPLACE(SPACE(COUNT(*)/10),&#039; &#039;,&#039;|&#039;),1,200) =&#039;&#039;<br />
      THEN &#039;|&#039;<br />
      ELSE<br />
		  SUBSTRING(REPLACE(SPACE(COUNT(*)/10),&#039; &#039;,&#039;|&#039;),1,200)<br />
      END<br />
  FROM [DB].[dbo].[UserLoginView]<br />
WHERE<br />
Application=&#039;DB&#039;<br />
AND MONTH(LoginDate) = MONTH(GETDATE())<br />
AND YEAR(LoginDate)=YEAR(GETDATE())<br />
GROUP BY CONVERT(DATETIME,CONVERT(VARCHAR,[LoginDate],101))<br />
--ORDER BY 1 DESC<br />
)X<br />
ORDER BY 1 DESC</p>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=97&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2011/05/10/sql-server-raw-sql-bar-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>DataBinding: &#8216;System.Data.DataRowView&#8217; does not contain a property with the name when using ImportRow(row)</title>
		<link>http://bensdigital.wordpress.com/2011/01/12/databinding-system-data-datarowview-does-not-contain-a-property-with-the-name-when-using-importrowrow/</link>
		<comments>http://bensdigital.wordpress.com/2011/01/12/databinding-system-data-datarowview-does-not-contain-a-property-with-the-name-when-using-importrowrow/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 18:18:36 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=95</guid>
		<description><![CDATA[issue: when try to bind or access the data colum from the datatable (from ImportRow method) DataTable dTable = datatablesource //sql fetch DataTable dTableFilter = new DataTable(); for (int i = 0; i &#60; dTable.Rows.Count; ++i) { dTableFilter.ImportRow(dTable.Rows[i]); } //then for (int i = 0; i &#60; dTableFilter.Rows.Count; i++) { lblRet.Text += &#34;" + dTableFilter.Rows[i]["columnname"].ToString(); <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=95&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>issue:</strong> when try to bind or access the data colum from the datatable (from ImportRow method)</p>
<p><code><br />
DataTable dTable = datatablesource //sql fetch<br />
DataTable dTableFilter = new DataTable();</p>
<p>for (int i = 0; i &lt; dTable.Rows.Count; ++i)<br />
{<br />
                        dTableFilter.ImportRow(dTable.Rows[i]);<br />
}</p>
<p>//then</p>
<p>            for (int i = 0; i &lt; dTableFilter.Rows.Count; i++)<br />
            {</p>
<p>                lblRet.Text += &quot;<br />" + dTableFilter.Rows[i]["columnname"].ToString(); // produce following error<br />
            }<br />
</code><br />
<strong>error:</strong> DataBinding: &#8216;System.Data.DataRowView&#8217; does not contain a property with the name &#8220;columname&#8221;</p>
<p><strong>solution:</strong> make sure you clone the structure of the schema of the old datatable</p>
<p>e.g. before the importrow for loop<br />
put: dTableFilter = dTable.Clone(); // clone the structure &amp; schema </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=95&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2011/01/12/databinding-system-data-datarowview-does-not-contain-a-property-with-the-name-when-using-importrowrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>Kill &amp; Restart a Process/Program C#</title>
		<link>http://bensdigital.wordpress.com/2010/02/19/kill-restart-a-processprogram-c/</link>
		<comments>http://bensdigital.wordpress.com/2010/02/19/kill-restart-a-processprogram-c/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 22:18:06 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=90</guid>
		<description><![CDATA[using System.Diagnostics; static bool IsProcessOpen(string name) { Process[] pArry = Process.GetProcesses(); foreach (Process p in pArry) { string s = p.ProcessName; s = s.ToLower(); if (s.CompareTo(name.ToLower()) == 0) { p.Kill(); if (name == &#8220;processname&#8221;) //processname is the name of the running process to check { StartProcess(); //function to start process } return true; } } <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=90&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>using System.Diagnostics;</p>
<p>static bool IsProcessOpen(string name)<br />
{<br />
Process[] pArry = Process.GetProcesses();<br />
foreach (Process p in pArry)<br />
{<br />
string s = p.ProcessName;<br />
s = s.ToLower();<br />
if (s.CompareTo(name.ToLower()) == 0)<br />
{<br />
p.Kill();<br />
if (name == &#8220;processname&#8221;) //processname is the name of the running process to check<br />
{<br />
StartProcess(); //function to start process<br />
}<br />
return true;<br />
}<br />
}<br />
return false;<br />
}</p>
<p>static void StartProcess()<br />
{<br />
ProcessStartInfo startInfo = new ProcessStartInfo();<br />
startInfo.FileName = @&#8221;****.exe&#8221;; //path/process name<br />
Process.Start(startInfo);<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=90&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2010/02/19/kill-restart-a-processprogram-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>Unpack the packed COBOL COMP-3 Field in SAS w/ S370FPDw</title>
		<link>http://bensdigital.wordpress.com/2010/02/17/unpack-the-packed-cobol-comp-3-field-in-sas-w-s370fpdw/</link>
		<comments>http://bensdigital.wordpress.com/2010/02/17/unpack-the-packed-cobol-comp-3-field-in-sas-w-s370fpdw/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 16:20:02 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=70</guid>
		<description><![CDATA[problem: DSN w/ Date field is packed w/ COBOL COMP-3 request: read and unpack the date field in SAS solution: use data format: S370FPDw (where w is packed length for the field) e.g. for a packed field PIC 9(08) COMP-3 at position 200     total length for the date is 8 and packed length is <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=70&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>problem:</p>
<p>DSN w/ Date field is packed w/ COBOL COMP-3</p>
<p>request:</p>
<p>read and unpack the date field in SAS</p>
<p>solution:</p>
<p>use data format: S370FPD<span style="color:#339966;"><em>w</em></span> (where <span style="color:#339966;"><em>w</em></span> is packed length for the field)</p>
<p>e.g.</p>
<p>for a packed field PIC 9(08) COMP-3 at position 200     total length for the date is 8 and packed length is 5</p>
<p>to read from DSN:</p>
<p>INPUT @200 testDate  S370FPD<span style="color:#339966;"><em>5</em></span></p>
<p>to write to DSN<br />
PUT @200 testDate $8.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=70&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2010/02/17/unpack-the-packed-cobol-comp-3-field-in-sas-w-s370fpdw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>SSMS Connection to SQL Azure</title>
		<link>http://bensdigital.wordpress.com/2009/09/01/ssms-connection-to-sql-azure/</link>
		<comments>http://bensdigital.wordpress.com/2009/09/01/ssms-connection-to-sql-azure/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:18:22 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[AZure]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/2009/09/01/ssms-connection-to-sql-azure/</guid>
		<description><![CDATA[Please be aware that SSMS is not supported with SQL Azure yet. However, you can use the following workaround for the time being: 1. Click Cancel in Connect to Server Dialog 2. Click New Query which will bring up the new connection dialog. 3. Enter your credentials. By default, you will connect to Master database. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=61&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please be aware that SSMS is not supported with SQL Azure yet. However, you can use the following workaround for the time being:</p>
<p>1. Click Cancel in Connect to Server Dialog<br />
2. Click New Query which will bring up the new connection dialog.<br />
3. Enter your credentials. By default, you will connect to Master database. If you want to connect to specific database, click options and enter the database name. Please be aware that USE is not supported.<br />
4. Now click Connect and you will get an error &#8220;Unable to apply connection settings. The detailed error message is: ‘ANSI_NULLS’ is not a recognized SET option. &#8220;<br />
5. Click Ok.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=61&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2009/09/01/ssms-connection-to-sql-azure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>Turn on Virtual Machine on Virtual Server Automatically</title>
		<link>http://bensdigital.wordpress.com/2009/07/16/turn-on-virtual-machine-on-virtual-server-automatically/</link>
		<comments>http://bensdigital.wordpress.com/2009/07/16/turn-on-virtual-machine-on-virtual-server-automatically/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:45:59 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=59</guid>
		<description><![CDATA[To autostart Virtual Machine, open Virtual Server web administration. With the VM off, edit the configuration for the VM you want to Autostart. Under the General Properties, you&#8217;ll see options to automatically turn on the virtual machine. You need to check Run virtual machine under the following user account, and type username and password. Click <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=59&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To autostart Virtual Machine, open Virtual Server web administration. With the VM off, edit the configuration for the VM you want to Autostart. Under the General Properties, you&#8217;ll see options to automatically turn on the virtual machine. You need to check Run virtual machine under the following user account, and type username and password. Click OK to save the settings.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=59&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2009/07/16/turn-on-virtual-machine-on-virtual-server-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL convert string &#8216;mmddyy&#8217; to date time format</title>
		<link>http://bensdigital.wordpress.com/2009/07/15/sql-convert-string-mmddyy-to-date-time-format/</link>
		<comments>http://bensdigital.wordpress.com/2009/07/15/sql-convert-string-mmddyy-to-date-time-format/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:45:32 +0000</pubDate>
		<dc:creator>bensdigital</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://bensdigital.wordpress.com/?p=57</guid>
		<description><![CDATA[1) T-SQL scalar function CREATE FUNCTION DBO.[format_mmddyy_date] (@mmddyy_value varchar(6)) returns smalldatetime as begin  declare @return_value smalldatetime  set @return_value =(select CAST(    substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),1,2)  +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),3,2)  +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),5,2)  as smalldatetime))  return @return_value end 2) SQL Select statement select CAST(  substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),1,2)  +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),3,2)  +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),5,2)  as smalldatetime) *replace the @mmddyy_value <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=57&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1) T-SQL scalar function<br />
CREATE FUNCTION DBO.[format_mmddyy_date] (@mmddyy_value varchar(6)) returns smalldatetime<br />
as<br />
begin<br />
 declare @return_value smalldatetime<br />
 set @return_value =(select CAST(<br />
   substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),1,2)<br />
 +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),3,2)<br />
 +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),5,2)<br />
 as smalldatetime))<br />
 return @return_value<br />
end</p>
<p>2) SQL Select statement<br />
select CAST(<br />
 substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),1,2)<br />
 +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),3,2)<br />
 +&#8217;/'+substring(Right(&#8217;000000&#8242; + convert(varchar(6),@mmddyy_value),6),5,2)<br />
 as smalldatetime)</p>
<p>*replace the @mmddyy_value w/ your variable, column or string (e.g &#8217;071509&#8242;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bensdigital.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bensdigital.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bensdigital.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bensdigital.wordpress.com&amp;blog=3992482&amp;post=57&amp;subd=bensdigital&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bensdigital.wordpress.com/2009/07/15/sql-convert-string-mmddyy-to-date-time-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccc544026fa52410d351b456e014488f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bensdigital</media:title>
		</media:content>
	</item>
	</channel>
</rss>
