<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>posidev.com &#187; C#</title>
	<atom:link href="http://posidev.com/blog/category/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://posidev.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 05 Sep 2010 21:12:16 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Insert/Read image from SQL Database</title>
		<link>http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/</link>
		<comments>http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 14:24:55 +0000</pubDate>
		<dc:creator>ivanov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ivanov.wordpress.com/2007/09/25/insertread-image-from-sql-database/</guid>
		<description><![CDATA[Here is a few useful links showing the different ways of storing and retrieving an image from MS SQL database.
Forum discussion : sgDotNet forum msdn forum
Blog post from the same forum : Wen Ching
Very good code snippet from Akadia :

// **** Read Image             [...]


Related posts:<ol><li><a href='http://posidev.com/blog/2006/11/17/xml-to-html/' rel='bookmark' title='Permanent Link: View Xml in webbrowser control'>View Xml in webbrowser control</a></li>
<li><a href='http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/' rel='bookmark' title='Permanent Link: Setting FileSystemWatcher'>Setting FileSystemWatcher</a></li>
<li><a href='http://posidev.com/blog/2007/07/31/binding-datagridview-to-datatable-snippets/' rel='bookmark' title='Permanent Link: Binding DatagridView to DataTable Snippets'>Binding DatagridView to DataTable Snippets</a></li>
</ol>]]></description>
		<wfw:commentRss>http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Binding DatagridView to DataTable Snippets</title>
		<link>http://posidev.com/blog/2007/07/31/binding-datagridview-to-datatable-snippets/</link>
		<comments>http://posidev.com/blog/2007/07/31/binding-datagridview-to-datatable-snippets/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 16:24:48 +0000</pubDate>
		<dc:creator>ivanov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ivanov.wordpress.com/2007/07/31/binding-datagridview-to-datatable-snippets/</guid>
		<description><![CDATA[ 
String strConn = &#8220;Server = .\\sqlexpress;Database = NorthWind;Integrated Security = SSPI;&#8221;;
dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;
conn = new SqlConnection(strConn);
da = new SqlDataAdapter(&#8220;Select Categories.CategoryName, Products.ProductName, Products.UnitPrice From Categories Inner Join Products on Products.CategoryID = Categories.CategoryID&#8221;, conn);
SqlCommandBuilder cmd = new SqlCommandBuilder(da);
ds = new DataSet();
da.Fill(ds, &#8220;Categories&#8221;);
bs = new BindingSource(ds, &#8220;Categories&#8221;);
dataGridView1.DataSource = bs;
bindingNavigator1.BindingSource = bs;
 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using [...]


Related posts:<ol><li><a href='http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/' rel='bookmark' title='Permanent Link: Insert/Read image from SQL Database'>Insert/Read image from SQL Database</a></li>
<li><a href='http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/' rel='bookmark' title='Permanent Link: Setting FileSystemWatcher'>Setting FileSystemWatcher</a></li>
<li><a href='http://posidev.com/blog/2006/11/17/xml-to-html/' rel='bookmark' title='Permanent Link: View Xml in webbrowser control'>View Xml in webbrowser control</a></li>
</ol>]]></description>
		<wfw:commentRss>http://posidev.com/blog/2007/07/31/binding-datagridview-to-datatable-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting FileSystemWatcher</title>
		<link>http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/</link>
		<comments>http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 14:11:20 +0000</pubDate>
		<dc:creator>ivanov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ivanov.wordpress.com/2007/04/10/setting-filesystemwatcher/</guid>
		<description><![CDATA[I have to watch for changes in INI file so needed somehow to put an event which should  trigger an action in my program.FileSystemWatcher class is exactly what I needed.It&#8217;s easy to use and very helpful so I will paste the codesnippet that I have found:
/*
* C# Programmers Pocket Consultant
* Author: Gregory S. MacBeth
* [...]


Related posts:<ol><li><a href='http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/' rel='bookmark' title='Permanent Link: Insert/Read image from SQL Database'>Insert/Read image from SQL Database</a></li>
<li><a href='http://posidev.com/blog/2007/07/31/binding-datagridview-to-datatable-snippets/' rel='bookmark' title='Permanent Link: Binding DatagridView to DataTable Snippets'>Binding DatagridView to DataTable Snippets</a></li>
</ol>]]></description>
		<wfw:commentRss>http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assosiating file type to your application</title>
		<link>http://posidev.com/blog/2006/11/29/assosiating-file-type-to-your-application/</link>
		<comments>http://posidev.com/blog/2006/11/29/assosiating-file-type-to-your-application/#comments</comments>
		<pubDate>Wed, 29 Nov 2006 14:14:52 +0000</pubDate>
		<dc:creator>ivanov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ivanov.wordpress.com/2006/11/29/assosiating-file-type-to-your-application/</guid>
		<description><![CDATA[If you have to programmatically associate file extensions with an application writting in the windows registry here is a good example that I found  programmatically checking and setting file types by BlackWasp   


Related posts:View Xml in webbrowser control



Related posts:<ol><li><a href='http://posidev.com/blog/2006/11/17/xml-to-html/' rel='bookmark' title='Permanent Link: View Xml in webbrowser control'>View Xml in webbrowser control</a></li>
</ol>]]></description>
		<wfw:commentRss>http://posidev.com/blog/2006/11/29/assosiating-file-type-to-your-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View Xml in webbrowser control</title>
		<link>http://posidev.com/blog/2006/11/17/xml-to-html/</link>
		<comments>http://posidev.com/blog/2006/11/17/xml-to-html/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 08:45:16 +0000</pubDate>
		<dc:creator>ivanov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ivanov.wordpress.com/2006/11/17/xml-to-html/</guid>
		<description><![CDATA[I have to embend webbrowser control into my application, so that I can show pieces of Xml code more nicely.I found two ways of doing this.The first and easiest was just to save the xml code in temporary xml file and navigate the webbrowser to it :
// save xml file and load it in XmlWebBrowser
XmlTextWriter [...]


Related posts:<ol><li><a href='http://posidev.com/blog/2006/11/29/assosiating-file-type-to-your-application/' rel='bookmark' title='Permanent Link: Assosiating file type to your application'>Assosiating file type to your application</a></li>
<li><a href='http://posidev.com/blog/2007/09/25/insertread-image-from-sql-database/' rel='bookmark' title='Permanent Link: Insert/Read image from SQL Database'>Insert/Read image from SQL Database</a></li>
<li><a href='http://posidev.com/blog/2007/04/10/setting-filesystemwatcher/' rel='bookmark' title='Permanent Link: Setting FileSystemWatcher'>Setting FileSystemWatcher</a></li>
</ol>]]></description>
		<wfw:commentRss>http://posidev.com/blog/2006/11/17/xml-to-html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
