<?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>vandango &#187; Mono</title>
	<atom:link href="http://www.vandango.org/archives/tag/mono/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vandango.org</link>
	<description>driving on code serpentines</description>
	<lastBuildDate>Thu, 09 Sep 2010 07:49:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Code Snippet &#8211; C#: Prüfen ob ein String eine gültige Zahl ist / ein gültiger Alpha-numerischer String</title>
		<link>http://www.vandango.org/archives/code-snippet-c-pr-fen-ob-ein-string-eine-g-ltige-zahl-ist-ein-g-ltiger-alpha-numerischer-string</link>
		<comments>http://www.vandango.org/archives/code-snippet-c-pr-fen-ob-ein-string-eine-g-ltige-zahl-ist-ein-g-ltiger-alpha-numerischer-string#comments</comments>
		<pubDate>Fri, 08 Jun 2007 08:52:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=48</guid>
		<description><![CDATA[public bool IsAlphaNumericString(string strAlphanum) { &#160;&#160;&#160; System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@&#8221;^[A-Za-z0-9]+$&#8221;); &#160;&#160;&#160; return pattern.IsMatch(strAlphanum.Trim()); } public bool IsNumeric(string strAlphanum) { &#160;&#160;&#160; System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@&#8221;^[0-9]+$&#8221;); &#160;&#160;&#160; return pattern.IsMatch(strAlphanum.Trim()); }]]></description>
			<content:encoded><![CDATA[<p>public bool IsAlphaNumericString(string strAlphanum) {<br />
&nbsp;&nbsp;&nbsp; System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@&#8221;^[A-Za-z0-9]+$&#8221;);<br />
&nbsp;&nbsp;&nbsp; return pattern.IsMatch(strAlphanum.Trim());<br />
}</p>
<p>public bool IsNumeric(string strAlphanum) {<br />
&nbsp;&nbsp;&nbsp; System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@&#8221;^[0-9]+$&#8221;);<br />
&nbsp;&nbsp;&nbsp; return pattern.IsMatch(strAlphanum.Trim());<br />
}<strong class="text_huge"></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/code-snippet-c-pr-fen-ob-ein-string-eine-g-ltige-zahl-ist-ein-g-ltiger-alpha-numerischer-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MonoPad 0.5</title>
		<link>http://www.vandango.org/archives/monopad-05</link>
		<comments>http://www.vandango.org/archives/monopad-05#comments</comments>
		<pubDate>Sun, 14 Jan 2007 00:10:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[MonoPad]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[Vandango]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=65</guid>
		<description><![CDATA[I have released a new version of my simple source code editor MonoPad. The version is 0.5. Get it from my files section: Download MonoPad]]></description>
			<content:encoded><![CDATA[<p>I have released a new version of my simple source code editor MonoPad. The version is 0.5.<br />
Get it from my files section: <a href="http://www.vandango.org/index.php/section/download/template/2007/action/showall/category/7123b3ebd6">Download MonoPad</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/monopad-05/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Snippet &#8211; C#: Generate square thumbnails</title>
		<link>http://www.vandango.org/archives/code-snippet-c-generate-square-thumbnails</link>
		<comments>http://www.vandango.org/archives/code-snippet-c-generate-square-thumbnails#comments</comments>
		<pubDate>Mon, 09 Oct 2006 11:53:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=87</guid>
		<description><![CDATA[To generate a square thumbnail in c#, use this code: public Bitmap Generate75x75Pixel(Bitmap image) { &#160;&#160;&#160;&#160;if(image == null) &#160;&#160;&#160;&#160;throw new ArgumentNullException("image"); &#160;&#160;&#160;&#160;Bitmap bmp = null; &#160;&#160;&#160;&#160;Bitmap crapped = null; &#160;&#160;&#160;&#160;int x = 0, y = 0; &#160;&#160;&#160;&#160;double prop = 0; &#160;&#160;&#160;&#160;if(image.Width > 75) { &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;// compute proportation &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;prop = (double)image.Width / (double)image.Height; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if(image.Width > image.Height) [...]]]></description>
			<content:encoded><![CDATA[<p>To generate a square thumbnail in c#, use this code:</p>
<pre>
public Bitmap Generate75x75Pixel(Bitmap image) {
&nbsp;&nbsp;&nbsp;&nbsp;if(image == null)
&nbsp;&nbsp;&nbsp;&nbsp;throw new ArgumentNullException("image");
&nbsp;&nbsp;&nbsp;&nbsp;Bitmap bmp = null;
&nbsp;&nbsp;&nbsp;&nbsp;Bitmap crapped = null;
&nbsp;&nbsp;&nbsp;&nbsp;int x = 0, y = 0;
&nbsp;&nbsp;&nbsp;&nbsp;double prop = 0;
&nbsp;&nbsp;&nbsp;&nbsp;if(image.Width > 75) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// compute proportation
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;prop = (double)image.Width / (double)image.Height;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(image.Width > image.Height) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;x = (int)Math.Round(75 * prop, 0);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;y = 75;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;x = 75;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;y = (int)Math.Round(75 / prop, 0);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bmp = new Bitmap((Image)image, new Size(x, y));
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;crapped = new Bitmap(75, 75);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Graphics g = Graphics.FromImage(crapped);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;g.DrawImage(bmp,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new Rectangle(0, 0, 75, 75),
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new Rectangle(0, 0, 75, 75),
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GraphicsUnit.Pixel
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bmp = crapped;
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;else {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;crapped = image;
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;return bmp;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/code-snippet-c-generate-square-thumbnails/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MonoPad version 0.3.0 online</title>
		<link>http://www.vandango.org/archives/monopad-version-030-online</link>
		<comments>http://www.vandango.org/archives/monopad-version-030-online#comments</comments>
		<pubDate>Thu, 14 Sep 2006 23:16:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[MonoPad]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[Vandango]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=96</guid>
		<description><![CDATA[I have released y new version of my small and simple C# editor MonoPad. It includes a startscript to start the programm with arguments using the &#8220;MonoPad %@&#8221; command.You can find the download at sourceforge and on my files section.]]></description>
			<content:encoded><![CDATA[<p>I have released y new version of my small and simple C# editor MonoPad. It includes a startscript to start the programm with arguments using the &#8220;MonoPad %@&#8221; command.<br />You can find the download at <a href="https://sourceforge.net/projects/monopad/">sourceforge</a>  and on my <a href="//index.php/section/download">files</a> section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/monopad-version-030-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MonoPad version 0.1.8 online</title>
		<link>http://www.vandango.org/archives/monopad-version-018-online</link>
		<comments>http://www.vandango.org/archives/monopad-version-018-online#comments</comments>
		<pubDate>Tue, 20 Jun 2006 12:38:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[MonoPad]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[Vandango]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=118</guid>
		<description><![CDATA[So, i have uploaded the first open version of the simple C# editor MonoPad. You can download it from Sourceforge.Remember it is early version and i have something to do for it.]]></description>
			<content:encoded><![CDATA[<p>So, i have uploaded the first open version of the simple C# editor MonoPad. You can download it from <a href="http://sourceforge.net/projects/monopad/">Sourceforge</a>.<br />Remember it is early version and i have something to do for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/monopad-version-018-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glade3 in MonoDevelop</title>
		<link>http://www.vandango.org/archives/glade3-in-monodevelop</link>
		<comments>http://www.vandango.org/archives/glade3-in-monodevelop#comments</comments>
		<pubDate>Thu, 19 Jan 2006 00:00:00 +0000</pubDate>
		<dc:creator>vandango</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.vandango.org//?p=167</guid>
		<description><![CDATA[Yes, i love it. Lluis work on the integration of Glade-3 GUI designer into MonoDevelop. With this recent changes you can work on your Glade-based UIs complete in MonoDevelop. But the absolutly best is that, whenever you add a new event handler it automatically generates the code and write it to the C# file. MonoDevelop [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, i love it. Lluis work on the integration of <a href="http://primates.ximian.com/~lluis/blog/pivot/entry.php?id=47">Glade-3 GUI designer</a> into MonoDevelop. With this recent changes you can work on your Glade-based UIs complete in <a href="http://www.monodevelop.org">MonoDevelop</a>. But the absolutly best is that, whenever you add 	a new event handler it automatically generates the code and write it to 	the C# file.<br />
MonoDevelop looks more and more like a Visual Studio or a SharpDevelop (ok, i know &#8211; should be the same).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vandango.org/archives/glade3-in-monodevelop/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
