<?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>Free-lance Programmer</title>
	<atom:link href="http://seangsophorn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://seangsophorn.wordpress.com</link>
	<description>Deliver more than expectation!!!</description>
	<lastBuildDate>Wed, 18 Jan 2012 06:50:45 +0000</lastBuildDate>
	<language>km</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='seangsophorn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a301ddf88b645eb1e8d08e1a3079ab62?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Free-lance Programmer</title>
		<link>http://seangsophorn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://seangsophorn.wordpress.com/osd.xml" title="Free-lance Programmer" />
	<atom:link rel='hub' href='http://seangsophorn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Localization in ASP.NET 4.0</title>
		<link>http://seangsophorn.wordpress.com/2012/01/17/localization-in-asp-net-4-0/</link>
		<comments>http://seangsophorn.wordpress.com/2012/01/17/localization-in-asp-net-4-0/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 02:34:45 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទសិក្សា]]></category>
		<category><![CDATA[kh]]></category>
		<category><![CDATA[khmer language]]></category>
		<category><![CDATA[localization]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=414</guid>
		<description><![CDATA[Hello everyone, how are you guy doing? hope all you guy doing great . Recently, I have been worked on an ASP.NET project that need to be able to switch languages from English to Khmer and from Khmer to English. &#8230; <a href="http://seangsophorn.wordpress.com/2012/01/17/localization-in-asp-net-4-0/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=414&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, how are you guy doing? hope all you guy doing great <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Recently, I have been worked on an ASP.NET project that need to be able to switch languages from English to Khmer and from Khmer to English. After google for an hour i found the way to do this and this is call Localization in ASP.NET. So i decide to write this article to share what i have been done.</p>
<p>Localization in ASP.NET 4 is very easy because all of your language text are store in Resource file. You just open your resource file and input your language text, then write only one line of code to switch your language. To do so follow the below steps:</p>
<ul>
<li> Start your visual studio and create new ASP.NET web application.</li>
<li>You can choose programming language you want VB.NET or C#.</li>
<li>Visual studio will generate an ASP.NET web application like image below.</li>
</ul>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2012/01/localizationtest1.jpg"><img class="aligncenter  wp-image-415" title="LocalizationTest1" src="http://seangsophorn.files.wordpress.com/2012/01/localizationtest1.jpg?w=800&#038;h=421" alt="" width="800" height="421" /></a></p>
<ul>
<li>switch to design time then drag and drop more Label and button to your default.aspx page.</li>
<li>On tools menu, click Generate Local Resource.</li>
<li>Back to your source code, you will notice that &#8220; meta:resourcekey&#8221;  added to your label and button you just added above. Resource also created into your App_LocalResource folder.</li>
</ul>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2012/01/localizationtest2.jpg"><img class="aligncenter  wp-image-416" title="LocalizationTest2" src="http://seangsophorn.files.wordpress.com/2012/01/localizationtest2.jpg?w=800&#038;h=462" alt="" width="800" height="462" /></a></p>
<ul>
<li>Now on your App_LocalResource folder, select Default.aspx.resx</li>
<li>Copy and past new Resource file (Ctrl C, Ctrl V).</li>
<li>Rename your new Resource file from &#8220; Copy of Default.aspx.resx&#8221;  to &#8220; Default.aspx.km-KH.resx&#8221; .</li>
<li>Remember that &#8220; km-KH&#8221;  is a default culture string for Khmer Language.</li>
<li>Open &#8220; Default.aspx.km-KH.resx&#8221; , you will see your your text and you can start translate it.</li>
</ul>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2012/01/localizationtest3.jpg"><img class="aligncenter  wp-image-417" title="LocalizationTest3" src="http://seangsophorn.files.wordpress.com/2012/01/localizationtest3.jpg?w=800&#038;h=438" alt="" width="800" height="438" /></a></p>
<ul>
<li>So far so good, right? now your need to override the Culture to to switch language at runtime by add the following code.</li>
</ul>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2012/01/localizationtest5.jpg"><img class="aligncenter  wp-image-418" title="LocalizationTest5" src="http://seangsophorn.files.wordpress.com/2012/01/localizationtest5.jpg?w=800&#038;h=469" alt="" width="800" height="469" /></a></p>
<ul>
<li>That&#8217;s it. Now you can run the application and your resource file will be apply on your page.</li>
<li>The below image is my result of my project.</li>
</ul>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2012/01/localizationtest6.jpg"><img class="aligncenter  wp-image-419" title="LocalizationTest6" src="http://seangsophorn.files.wordpress.com/2012/01/localizationtest6.jpg?w=800&#038;h=450" alt="" width="800" height="450" /></a></p>
<p>Next i will so you how to apply localization in WinForm application, so stay turn. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Happy programming&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/414/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=414&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2012/01/17/localization-in-asp-net-4-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2012/01/localizationtest1.jpg" medium="image">
			<media:title type="html">LocalizationTest1</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2012/01/localizationtest2.jpg" medium="image">
			<media:title type="html">LocalizationTest2</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2012/01/localizationtest3.jpg" medium="image">
			<media:title type="html">LocalizationTest3</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2012/01/localizationtest5.jpg" medium="image">
			<media:title type="html">LocalizationTest5</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2012/01/localizationtest6.jpg" medium="image">
			<media:title type="html">LocalizationTest6</media:title>
		</media:content>
	</item>
		<item>
		<title>My first LightSwitch application</title>
		<link>http://seangsophorn.wordpress.com/2011/12/06/lightswitch/</link>
		<comments>http://seangsophorn.wordpress.com/2011/12/06/lightswitch/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 12:41:07 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទសិក្សា]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=401</guid>
		<description><![CDATA[LightSwitch is a new product in the Visual Studio family which is called Visual Studio LightSwitch. LightSwitch enable you to build business applications for the cloud and the desktop without focusing on writing code. For more information visit: http://msdn.microsoft.com/en-us/lightswitch/gg702208 Happy &#8230; <a href="http://seangsophorn.wordpress.com/2011/12/06/lightswitch/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=401&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>LightSwitch is a new product in the Visual Studio family which is called Visual Studio LightSwitch. LightSwitch enable you to build business applications for the cloud and the desktop without focusing on writing code.</p>
<div id="attachment_402" class="wp-caption alignnone" style="width: 603px"><a href="http://seangsophorn.files.wordpress.com/2011/12/lightswitch.jpg"><img class="size-full wp-image-402 " title="LightSwitch" src="http://seangsophorn.files.wordpress.com/2011/12/lightswitch.jpg?w=593&#038;h=336" alt="" width="593" height="336" /></a><p class="wp-caption-text">My first application using Visual Studio LightSwitch</p></div>
<p>For more information visit: <a href="http://msdn.microsoft.com/en-us/lightswitch/gg702208" target="_blank">http://msdn.microsoft.com/en-us/lightswitch/gg702208</a></p>
<p>Happy programming&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/401/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=401&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/12/06/lightswitch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/12/lightswitch.jpg" medium="image">
			<media:title type="html">LightSwitch</media:title>
		</media:content>
	</item>
		<item>
		<title>My web form in aspx page</title>
		<link>http://seangsophorn.wordpress.com/2011/11/16/395/</link>
		<comments>http://seangsophorn.wordpress.com/2011/11/16/395/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 07:04:27 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=395</guid>
		<description><![CDATA[កាលពីអត្តបទមុខ ខ្ញុំបាន design នៅក្នុង Photoshop ។ ឥលូវវាបានក្លាយទៅជា aspx page ហើយ&#8230; Happy Proprogramming&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=395&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>កាលពីអត្តបទមុខ ខ្ញុំបាន design នៅក្នុង Photoshop ។ ឥលូវវាបានក្លាយទៅជា aspx page ហើយ&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/11/webform_ie.jpg"><img class="aligncenter size-full wp-image-396" title="WebForm_IE" src="http://seangsophorn.files.wordpress.com/2011/11/webform_ie.jpg?w=593&#038;h=356" alt="My web form display in IE 9" width="593" height="356" /></a></p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/11/webform_firefox.jpg"><img class="aligncenter size-full wp-image-397" title="WebForm_Firefox" src="http://seangsophorn.files.wordpress.com/2011/11/webform_firefox.jpg?w=593&#038;h=358" alt="My web form display in Firefox" width="593" height="358" /></a></p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/11/webform_chrome.jpg"><img class="aligncenter size-full wp-image-398" title="WebForm_Chrome" src="http://seangsophorn.files.wordpress.com/2011/11/webform_chrome.jpg?w=593&#038;h=357" alt="My web form display in Chrome" width="593" height="357" /></a>Happy Proprogramming&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/395/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=395&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/11/16/395/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/11/webform_ie.jpg" medium="image">
			<media:title type="html">WebForm_IE</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/11/webform_firefox.jpg" medium="image">
			<media:title type="html">WebForm_Firefox</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/11/webform_chrome.jpg" medium="image">
			<media:title type="html">WebForm_Chrome</media:title>
		</media:content>
	</item>
		<item>
		<title>Pass Values Between ASP.NET Pages</title>
		<link>http://seangsophorn.wordpress.com/2011/11/03/pass-values-between-asp-net-web-pages/</link>
		<comments>http://seangsophorn.wordpress.com/2011/11/03/pass-values-between-asp-net-web-pages/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 02:47:57 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
		
		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=389</guid>
		<description><![CDATA[It&#8217;s might useful for beginner who start working with asp.net webpage. You can pass information between pages in various ways, some of which depend on how the redirection occurs. The following options are available even if the source page is &#8230; <a href="http://seangsophorn.wordpress.com/2011/11/03/pass-values-between-asp-net-web-pages/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=389&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s might useful for beginner who start working with asp.net webpage.</p>
<p>You can pass information between pages in various ways, some of which depend on how the redirection occurs. The following options are available even if the source page is in a different ASP.NET Web application from the target page, or if the source page is not an ASP.NET Web page:</p>
<ul>
<li>Use a query string.</li>
<li>Get HTTP POST information from the source page.</li>
</ul>
<p>The following options are available only when the source and target pages are in the same ASP.NET Web application.</p>
<ul>
<li>Use session state.</li>
<li>Create public properties in the source page and access the property values in the target page.</li>
<li>Get control information in the target page from controls in the source page.</li>
</ul>
<p>A Visual Studio Web application project with source code is available here: <a href="http://code.msdn.microsoft.com/How-to-Pass-Data-Between-935838e4" target="_blank">Download</a></p>
<p>Happy programming!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=389&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/11/03/pass-values-between-asp-net-web-pages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>
	</item>
		<item>
		<title>My Web Form Template</title>
		<link>http://seangsophorn.wordpress.com/2011/10/17/my-web-form-template/</link>
		<comments>http://seangsophorn.wordpress.com/2011/10/17/my-web-form-template/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 06:54:04 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=380</guid>
		<description><![CDATA[នឹងត្រូវដាក់អោយគេជ្រើសរើសក្នុងសប្តាហ៍នេះ&#8230; មិនដឹងថាពេលចេញជា HTML ដូចរូបភាពនេះអត់រ៉េខ្ញុំ&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=380&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>នឹងត្រូវដាក់អោយគេជ្រើសរើសក្នុងសប្តាហ៍នេះ&#8230; មិនដឹងថាពេលចេញជា HTML ដូចរូបភាពនេះអត់រ៉េខ្ញុំ&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/10/template_design.jpg"><img class="aligncenter size-full wp-image-381" title="Template_Design in Photoshop" src="http://seangsophorn.files.wordpress.com/2011/10/template_design.jpg?w=593" alt=""   /></a><a href="http://seangsophorn.files.wordpress.com/2011/10/general_emis_template1.jpg"><br />
</a><a href="http://seangsophorn.files.wordpress.com/2011/10/general_emis_template.jpg"><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/380/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=380&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/10/17/my-web-form-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/10/template_design.jpg" medium="image">
			<media:title type="html">Template_Design in Photoshop</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Office 2007 Icon Gallery</title>
		<link>http://seangsophorn.wordpress.com/2011/09/01/using-office-2007-icon-gallery/</link>
		<comments>http://seangsophorn.wordpress.com/2011/09/01/using-office-2007-icon-gallery/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 01:30:58 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទសិក្សា]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=362</guid>
		<description><![CDATA[Few days ago, I have been working on VSTO project related to Excel Workbook Development. Fortunately, I found a way how to use Office 2007 Icon Gallery in your office Ribbon through Visual Studio Tools for Office System (VSTO). So &#8230; <a href="http://seangsophorn.wordpress.com/2011/09/01/using-office-2007-icon-gallery/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=362&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Few days ago, I have been working on VSTO project related to Excel Workbook Development. Fortunately, I found a way how to use Office 2007 Icon Gallery in your office Ribbon through Visual Studio Tools for Office System (VSTO). So I decided to write this article to share with you as follow.</p>
<p><strong>Office 2007 Icon Gallery</strong></p>
<p>Normally, all those icons already exist when you installed Microsoft Office. To view those icons do the following:</p>
<ol>
<li>Download icon gallery viewer from here <a href="http://www.microsoft.com/download/en/details.aspx?id=11675">http://www.microsoft.com/download/en/details.aspx?id=11675</a></li>
<li>Open Office2007IconsGallery.xlsm from your unzip folder, the following excel display.</li>
</ol>
<p><a href="http://seangsophorn.files.wordpress.com/2011/09/icongallery.jpg"><img class="aligncenter size-full wp-image-363" title="icongallery" src="http://seangsophorn.files.wordpress.com/2011/09/icongallery.jpg?w=593" alt=""   /></a></p>
<p>3. Under Developer tap, you will see all excel icon gallery. Move your mouse pointer on each icon to see it’s IconID, example IconID in the image above is “SlideShowRehearseTimings”.</p>
<p><strong>Visual Studio Tools for Office System (VSTO)</strong></p>
<p>Now start your Visual Studio in this article I’m used Visual Studio 2008.</p>
<ol>
<li>In your Visual Studio IDE, click File menu &#8211;&gt; New &#8211;&gt; Project.</li>
<li>From your New Project dialog &#8211;&gt; Select Visual Basic/C# &#8211;&gt; Office &#8211;&gt; Excel 2007 Workbook.</li>
<li>Visual Studio will generate a VSTO project for you automatically.</li>
<li>From your Solution Explorer &#8211;&gt; Right click on your project name &#8211;&gt; Add &#8211;&gt; New Item.</li>
<li>From  Add New Item dialog &#8211;&gt; Select Ribbon (Visual Design) &#8211;&gt; Click Add button.</li>
<li>After you design your Ribbon with Office Ribbon Controls in your Toolbox, your project solution might same as below image.</li>
</ol>
<p><a href="http://seangsophorn.files.wordpress.com/2011/09/vsto.jpg"><img class="aligncenter size-full wp-image-364" title="VSTO" src="http://seangsophorn.files.wordpress.com/2011/09/vsto.jpg?w=593" alt=""   /></a></p>
<p><strong>7.</strong> Click on button in your ribbon &#8211;&gt; In property explorer apply your IconID above in OfficeImageId property.</p>
<p>8. Press F5, then excel application startup. Check your Ribbon tap, you will see your custome button and image as below:</p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/09/result.jpg"><img class="aligncenter size-full wp-image-365" title="result" src="http://seangsophorn.files.wordpress.com/2011/09/result.jpg?w=593" alt=""   /></a></p>
<p>That&#8217;s it. Now i can have an office icon in my ribbon button on Excel.</p>
<p>Happy programming…</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=362&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/09/01/using-office-2007-icon-gallery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/09/icongallery.jpg" medium="image">
			<media:title type="html">icongallery</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/09/vsto.jpg" medium="image">
			<media:title type="html">VSTO</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/09/result.jpg" medium="image">
			<media:title type="html">result</media:title>
		</media:content>
	</item>
		<item>
		<title>My Site Logo&#8230;</title>
		<link>http://seangsophorn.wordpress.com/2011/06/10/my-site-logo/</link>
		<comments>http://seangsophorn.wordpress.com/2011/06/10/my-site-logo/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 08:27:06 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=356</guid>
		<description><![CDATA[ក្រោយពីវេបសាយរបស់ពួកយើងចាប់ផ្តើមបង្ហោះមក(Free-lance Programmer) មិត្តរបស់ខ្ញុំខ្លះ និង visitor ខ្លះជួយអោយយោបល់ថា ធ្វើ logo ផង​ ។​ តាមពិតទៅចង់ធ្វើណាស់តែមិនដឹង design មិច&#8230; ក្រោយពីពិភាក្សាជាមួយលោកគ្រូ google ដើម្បីបាន sample ខ្លះមកមើល ឥលូវធ្វើបានហេស&#8230; មិចដែលបងប្អូន?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=356&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ក្រោយពីវេបសាយរបស់ពួកយើងចាប់ផ្តើមបង្ហោះមក(<a href="http://www.free-lanceprogrammer.com" target="_blank">Free-lance Programmer</a>) មិត្តរបស់ខ្ញុំខ្លះ និង visitor ខ្លះជួយអោយយោបល់ថា ធ្វើ logo ផង​ ។​ តាមពិតទៅចង់ធ្វើណាស់តែមិនដឹង design មិច&#8230; ក្រោយពីពិភាក្សាជាមួយលោកគ្រូ google ដើម្បីបាន sample ខ្លះមកមើល ឥលូវធ្វើបានហេស&#8230; មិចដែលបងប្អូន?</p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/06/teamlogo.jpg"><img class="aligncenter size-full wp-image-357" title="TeamLogo" src="http://seangsophorn.files.wordpress.com/2011/06/teamlogo.jpg?w=593" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=356&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/06/10/my-site-logo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/06/teamlogo.jpg" medium="image">
			<media:title type="html">TeamLogo</media:title>
		</media:content>
	</item>
		<item>
		<title>My Personal Name Card</title>
		<link>http://seangsophorn.wordpress.com/2011/06/07/my-personal-name-card/</link>
		<comments>http://seangsophorn.wordpress.com/2011/06/07/my-personal-name-card/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 07:51:00 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=351</guid>
		<description><![CDATA[Website របស់ក្រុមពួកយើងបង្ហោះបានមួយអាទិត្យហើយ (Free-lance Programmer Official Website Live) ឃើញមានគេចូលមើលគួរសមដែលតាស ។ ហើយលូវបានធ្វើ NameCard សំរាប់ប្រើប្រាស់ផ្ទាល់ខ្លួន ។ Design ម៉ាព្រឹកបានតាប៉ុណ្ណឹង ពេលព្រីនចេញមកមិនដឹងមិចម៉ារ៉េខ្ញុំ&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=351&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Website របស់ក្រុមពួកយើងបង្ហោះបានមួយអាទិត្យហើយ (<a title="Free-lance Programmer Official Website" href="http://www.free-lanceprogrammer.com" target="_blank">Free-lance Programmer Official Website Live</a>) ឃើញមានគេចូលមើលគួរសមដែលតាស ។ ហើយលូវបានធ្វើ NameCard សំរាប់ប្រើប្រាស់ផ្ទាល់ខ្លួន ។ Design ម៉ាព្រឹកបានតាប៉ុណ្ណឹង ពេលព្រីនចេញមកមិនដឹងមិចម៉ារ៉េខ្ញុំ&#8230;</p>
<p style="text-align:center;"><a href="http://seangsophorn.files.wordpress.com/2011/06/mypersonalnamecard.jpg"><img class="size-full wp-image-352 aligncenter" title="My​​​ Pe​rsonal Name Card" src="http://seangsophorn.files.wordpress.com/2011/06/mypersonalnamecard.jpg?w=593" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/351/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=351&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/06/07/my-personal-name-card/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/06/mypersonalnamecard.jpg" medium="image">
			<media:title type="html">My​​​ Pe​rsonal Name Card</media:title>
		</media:content>
	</item>
		<item>
		<title>My official website now launch!!!</title>
		<link>http://seangsophorn.wordpress.com/2011/05/30/domainname/</link>
		<comments>http://seangsophorn.wordpress.com/2011/05/30/domainname/#comments</comments>
		<pubDate>Mon, 30 May 2011 08:17:42 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=345</guid>
		<description><![CDATA[ប៉ុន្មានអាទិត្យចុងក្រោយនេះ ខ្ញុំបានបញ្ចប់ Design Free-lance Programmer Official websit ជាផ្លូវការហើយ ហេហេ&#8230; សប្បាយចិត្តណាស់ ។ ហើយព្រឹកមិញក៏បានទិញ DomainName ហើយដែរ&#8230; អស់​48ដុល្លាក្នុងមួយឆ្នាំ ។​ យប់នេះ upload ចូលអោយបងប្អូនបានឃើញ ហើយជួយកែភាសាអង់គ្លេសខ្ញុំផង ។ Feedback comment ស្វាគមន៌នៅទីនេះ&#8230; Free-lance Programmer Official Website: http://www.Free-lanceProgrammer.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=345&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ប៉ុន្មានអាទិត្យចុងក្រោយនេះ ខ្ញុំបានបញ្ចប់ Design Free-lance Programmer Official websit ជាផ្លូវការហើយ ហេហេ&#8230; សប្បាយចិត្តណាស់ <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ។ ហើយព្រឹកមិញក៏បានទិញ DomainName ហើយដែរ&#8230; អស់​48ដុល្លាក្នុងមួយឆ្នាំ ។​ យប់នេះ upload ចូលអោយបងប្អូនបានឃើញ ហើយជួយកែភាសាអង់គ្លេសខ្ញុំផង ។ Feedback comment ស្វាគមន៌នៅទីនេះ&#8230;</p>
<p>Free-lance Programmer Official Website: <a href="http://www.Free-lanceProgrammer.com" target="_blank">http://www.Free-lanceProgrammer.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=345&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/05/30/domainname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>
	</item>
		<item>
		<title>ICT World Expo 2011</title>
		<link>http://seangsophorn.wordpress.com/2011/04/04/ict-world-expo-2011/</link>
		<comments>http://seangsophorn.wordpress.com/2011/04/04/ict-world-expo-2011/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 05:04:15 +0000</pubDate>
		<dc:creator>សុភ័ណ្ឌ</dc:creator>
				<category><![CDATA[អត្ថបទពីការងារ]]></category>

		<guid isPermaLink="false">http://seangsophorn.wordpress.com/?p=337</guid>
		<description><![CDATA[ProlepSys is my current working company committed to integrate powerful Business Intelligence reporting and analysis products to meet the needs of corporate implementations. We provide business reporting solutions and IT consultant as well. During ICT World Expo, we also expose &#8230; <a href="http://seangsophorn.wordpress.com/2011/04/04/ict-world-expo-2011/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=337&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.prolepsys.fr/" target="_blank">ProlepSys</a> is my current working company committed to integrate powerful Business Intelligence reporting and analysis products to meet the needs of corporate implementations. We provide business reporting solutions and IT consultant as well. During ICT World Expo, we also expose our services over there too.</p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/04/snv39053-copy.jpg"><img class="alignnone size-full wp-image-339" src="http://seangsophorn.files.wordpress.com/2011/04/snv39053-copy.jpg?w=593" alt=""   /></a></p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/04/snv39056-copy2.jpg"><img class="alignnone size-full wp-image-340" title="snv39056-copy2" src="http://seangsophorn.files.wordpress.com/2011/04/snv39056-copy2.jpg?w=593" alt=""   /></a></p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/04/snv39057-copy3.jpg"><img class="alignnone size-full wp-image-341" src="http://seangsophorn.files.wordpress.com/2011/04/snv39057-copy3.jpg?w=593" alt=""   /></a></p>
<p><a href="http://seangsophorn.files.wordpress.com/2011/04/snv39068-copy4.jpg"><img class="alignnone size-full wp-image-342" src="http://seangsophorn.files.wordpress.com/2011/04/snv39068-copy4.jpg?w=593" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seangsophorn.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seangsophorn.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seangsophorn.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seangsophorn.wordpress.com&amp;blog=6284554&amp;post=337&amp;subd=seangsophorn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seangsophorn.wordpress.com/2011/04/04/ict-world-expo-2011/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8f4d048c69f4ca82b46e71c0a02f04f?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">សុភ័ណ្ឌ</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/04/snv39053-copy.jpg" medium="image" />

		<media:content url="http://seangsophorn.files.wordpress.com/2011/04/snv39056-copy2.jpg" medium="image">
			<media:title type="html">snv39056-copy2</media:title>
		</media:content>

		<media:content url="http://seangsophorn.files.wordpress.com/2011/04/snv39057-copy3.jpg" medium="image" />

		<media:content url="http://seangsophorn.files.wordpress.com/2011/04/snv39068-copy4.jpg" medium="image" />
	</item>
	</channel>
</rss>
