<?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>Schelfaut.NET</title>
	<atom:link href="http://schelfaut.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://schelfaut.net</link>
	<description>Sven Schelfaut&#039;s technical blog</description>
	<lastBuildDate>Fri, 21 May 2010 21:37:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Visual studio Tip #5: &#8220;Surround with&#8230;&#8221; in ASP.NET 4.0</title>
		<link>http://schelfaut.net/?p=231</link>
		<comments>http://schelfaut.net/?p=231#comments</comments>
		<pubDate>Fri, 21 May 2010 15:35:11 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=231</guid>
		<description><![CDATA[As an ASP.NET developer, you certainly found yourself in the following situation. You have a number of mark-up elements in your page which should be hidden/updated/&#8230; all at once. The solution is to put them in a panel or updatepanel. In previous versions of Visual Studio you had to manually type the tags to surround [...]]]></description>
			<content:encoded><![CDATA[<p>As an ASP.NET developer, you certainly found yourself in the following situation.<br />
You have a number of mark-up elements in your page which should be hidden/updated/&#8230; all at once.<br />
The solution is to put them in a panel or updatepanel.</p>
<p>In previous versions of Visual Studio you had to manually type the tags to surround your mark-up with, causing a lot of copy pasting and scrolling sometimes.<br />
Visual Studio 2010 now offers the &#8220;Surround with&#8230;&#8221; option in your ASP.NET mark-up.<br />
We already knew this feature from VB.NET or C#.</p>
<p>Let&#8217;s say you have a panel which has to be placed in an updatepanel:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/panelUpdatePanel.png"><img class="alignnone size-full wp-image-232" title="panel for updatepanel" src="http://schelfaut.net/wp-content/uploads/2010/05/panelUpdatePanel.png" alt="" width="440" height="73" /></a></p>
<p>After selecting the panel mark-up you can right click on it (or use the shortcut CTRL + K, S) to show the following context menu:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/panelSurroundWith.png"><img class="alignnone size-full wp-image-233" title="panelSurroundWith" src="http://schelfaut.net/wp-content/uploads/2010/05/panelSurroundWith.png" alt="" width="496" height="245" /></a></p>
<p>You can chose which snippet needs to be used for the surrounding.<br />
Selecting the &#8220;updatepanel&#8221; snippet gives the following result:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/panelWithUpdatePanel.png"><img class="alignnone size-full wp-image-234" title="Panel with updatepanel" src="http://schelfaut.net/wp-content/uploads/2010/05/panelWithUpdatePanel.png" alt="" width="502" height="132" /></a></p>
<p>It&#8217;s just a small feature, but it should already have been in Visual Studio for a long time!</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=231</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual studio tip #4: Generate method stub in VB.NET 2010</title>
		<link>http://schelfaut.net/?p=214</link>
		<comments>http://schelfaut.net/?p=214#comments</comments>
		<pubDate>Thu, 06 May 2010 13:17:56 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[vb.net]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=214</guid>
		<description><![CDATA[I am not a big fan of VB.NET, but for some reasons I will not explain in this post, I have to code in it (lucky me ). Microsoft is always claiming that C# and VB.NET are equally evolving, but some changes only appear in VB.NET one or more releases after they have been implemented [...]]]></description>
			<content:encoded><![CDATA[<p>I am not a big fan of VB.NET, but for some reasons I will not explain in this post, I have to code in it (lucky me <img src='http://schelfaut.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ).<br />
Microsoft is always claiming that C# and VB.NET are equally evolving, but some changes only appear in VB.NET one or more releases after they have been implemented in C#.<br />
In C#, previous versions of Visual Studio already offered the ability to generate a method definition that didn&#8217;t exist already.<br />
In VB.NET you had to write your method stubs first by yourself.<br />
The little dash that appeared under your method didn&#8217;t know what to do with it in Visual Studio 2008:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/GenerateMethodVB2008.png"><img class="alignnone size-full wp-image-215" title="Generate Method VB 2008" src="http://schelfaut.net/wp-content/uploads/2010/05/GenerateMethodVB2008.png" alt="" width="457" height="148" /></a></p>
<p>Visual Studio 2010 now offers a change. Typing CTRL + . or clicking on the little dash now results in this:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/GenerateMethodVB2010.png"><img class="alignnone size-full wp-image-216" title="Generate Method VB 2010" src="http://schelfaut.net/wp-content/uploads/2010/05/GenerateMethodVB2010.png" alt="" width="494" height="142" /></a></p>
<p>When you click on generate, this results in a method definition which is basically the same than in C#:</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/05/GenMethodResult.png"><img class="alignnone size-full wp-image-217" title="Gen Method Result" src="http://schelfaut.net/wp-content/uploads/2010/05/GenMethodResult.png" alt="" width="435" height="189" /></a></p>
<p>I was always wondering why Microsoft didn&#8217;t implement this feature in previous releases, but finally it&#8217;s there!<br />
Only one thing that annoys me is that the little dash doesn&#8217;t pop up directly while you are typing, as in C#.<br />
If you are coding VB.NET you have to put your have to move your cursor to another line (or something else that changes the focus of the current line)   before Visual Studio wants to help you.<br />
As I work in a mixed environment, I must say the intellisense and little help features as the one described above are still better implemented in C#, but you can&#8217;t always compare both languages as the syntax is totally different.</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=214</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2010: choose your default open standard</title>
		<link>http://schelfaut.net/?p=208</link>
		<comments>http://schelfaut.net/?p=208#comments</comments>
		<pubDate>Tue, 04 May 2010 09:37:10 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[office 2010]]></category>
		<category><![CDATA[OpenDocument formats]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=208</guid>
		<description><![CDATA[Where Office 2007 introduced Microsoft&#8217;s new Open XML format, Office 2010 (which RTM&#8217;d last week) goes even further in its support for open standards. When you first open an application from the Office 2010 suite: the following window appears: Microsoft definitely adds more flexibility with this feature, enabling Open Office users to open their ODF [...]]]></description>
			<content:encoded><![CDATA[<p>Where Office 2007 introduced Microsoft&#8217;s new <a href="http://en.wikipedia.org/wiki/Office_Open_XML" target="_blank">Open XML format</a>, Office 2010 (which RTM&#8217;d last week) goes even further in its support for <a href="http://en.wikipedia.org/wiki/Open_standard" target="_blank">open standards</a>.<br />
When you first open an application from the Office 2010 suite: the following window appears:<br />
<a href="http://schelfaut.net/wp-content/uploads/2010/05/office2010_default_types.png"><img class="alignnone size-full wp-image-209" title="Office2010 default file types" src="http://schelfaut.net/wp-content/uploads/2010/05/office2010_default_types.png" alt="" width="502" height="365" /></a></p>
<p>Microsoft definitely adds more flexibility with this feature, enabling Open Office users to open their ODF files in Microsoft Office and vice versa.</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=208</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Business Intelligence Development Studio in Visual Studio 2010 (yet?)</title>
		<link>http://schelfaut.net/?p=204</link>
		<comments>http://schelfaut.net/?p=204#comments</comments>
		<pubDate>Wed, 21 Apr 2010 08:32:08 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Business Intelligence Development Studio]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=204</guid>
		<description><![CDATA[As a developer I am pleased with the new Visual Studio 2010 release. Lots of features were added and the editor looks more tight and solid than its predecessors. BI people still have to wait to taste the Visual Studio 2010 candy. SQL Server 2008 only ships the Business Intelligence Development Studio (BIDS) for Visual [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer I am pleased with the new Visual Studio 2010 release.<br />
Lots of features were added and the editor looks more tight and solid than its predecessors.</p>
<p>BI people still have to wait to taste the Visual Studio 2010 candy.<br />
SQL Server 2008 only ships the Business Intelligence Development Studio (BIDS) for Visual Studio 2008, which is understandable because Visual Studio 2010 didn&#8217;t exist when SQL Server 2008 was released.</p>
<p>Enthusiastuc BI users who wanted to convert there existing reporting project to a Visual Studio 2010 project already reported (<a href="https://connect.microsoft.com/VisualStudio/feedback/details/532664/cannot-open-a-sql-reporting-services-rptproj-file?wa=wsignin1.0" target="_blank">here </a>and <a href="https://connect.microsoft.com/VisualStudio/feedback/details/540995/cannot-open-rptproj-in-vs2010-originally-created-in-vs2008?wa=wsignin1.0" target="_blank">here</a>) that the conversion failed.<br />
The official statement from Microsoft:</p>
<blockquote><p>Business Intelligence Development Studio for Visual Studio 2010 is  currently under consideration for future releases of SQL Server.</p></blockquote>
<p>So we can only hope that SQL Server 2008 R2, which was released on May 3 on MSDN <span style="text-decoration: line-through;">will (probably?) be <a href="http://www.brentozar.com/archive/2010/04/sql-server-r-release-date-may/" target="_blank">released at May 21</a></span>, will ship BIDS 2010, although I just can&#8217;t find an official statement from Micrsosoft on that, so we have to wait until May.</p>
<p><strong>UPDATE:</strong> Just downloaded and installed the SQL Server 2008 R2 Business Intelligence Development Studio. Unfortunately it only works in Visual Studio 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=204</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Visual Studio tip #3: hide splash screen</title>
		<link>http://schelfaut.net/?p=200</link>
		<comments>http://schelfaut.net/?p=200#comments</comments>
		<pubDate>Wed, 07 Apr 2010 14:53:21 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=200</guid>
		<description><![CDATA[Splash screens are beautiful, at least that&#8217;s wat Microsoft thinks about it. I must say, splash screens are just annoying and they slow down the startup of Visual Studio and other programs. But, there is a way to skip the splash screen part in Visual Studio. Most of  the Visual Studio developers launch their favorite [...]]]></description>
			<content:encoded><![CDATA[<p>Splash screens are beautiful, at least that&#8217;s wat Microsoft thinks about it.<br />
I must say, splash screens are just annoying and they slow down the startup of Visual Studio and other programs.<br />
But, there is a way to skip the splash screen part in Visual Studio.</p>
<p>Most of  the Visual Studio developers launch their favorite development platform using a shortcut.<br />
Depending on the version of Visual Studio, the shortcut refers to a directory like this:<br />
<img src="file:///C:/Users/SVEN_S%7E1/AppData/Local/Temp/moz-screenshot-2.png" alt="" /><strong>&#8220;%Program Files%\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe&#8221; </strong></p>
<p>Now,  just add <strong>/nosplash </strong>after the closing quotation mark of the shortcut reference.</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/04/shortcut_properties.png"><img class="alignnone size-medium wp-image-201" title="Shortcut properties" src="http://schelfaut.net/wp-content/uploads/2010/04/shortcut_properties-300x129.png" alt="" width="300" height="129" /></a></p>
<p>When you now start Visual Studio from your beloved shortcut, the splash screen is gone,<br />
saving you some time to write some excellent piece of code <img src='http://schelfaut.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=200</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still no official date for HTC Hero Android 2.1 update in Benelux</title>
		<link>http://schelfaut.net/?p=195</link>
		<comments>http://schelfaut.net/?p=195#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:02:29 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android 2.1]]></category>
		<category><![CDATA[benelux]]></category>
		<category><![CDATA[htc hero]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=195</guid>
		<description><![CDATA[Despite the rumors, HTC doesn&#8217;t provide us with the official release date of the Android 2.1 update for the HTC Hero in Benelux. We are waiting for months now for this update, but I think HTC is just postponing the release until the new HTC Desire will show up in Benelux, which should be there [...]]]></description>
			<content:encoded><![CDATA[<p>Despite the <a href="http://www.electronista.com/articles/10/04/05/htc.android.21.rollout.for.droid.due.on.april.16/" target="_blank">rumors</a>, HTC doesn&#8217;t provide us with the official release date of the Android 2.1 update for the HTC Hero in Benelux.<br />
We are waiting for months now for this update, but I think HTC is just postponing the release until the new <a href="http://www.htc.com/www/product/desire/overview.html" target="_blank">HTC Desire</a> will show up in Benelux, which should be there soon.</p>
<p>Official statement that I&#8217;ve got from the HTC customer service:</p>
<blockquote><p>&#8220;We understand that now that a phone running Android OS 2.1 is available  that you are excited to get an update for your Hero. We are still hard  at work building Sense for this new version but we expect to have the  upgrade finished and ready to go soon. Please understand that it takes  time to customize any Android version to ensure you have the intuitive  experience Sense provides, and we hope you can be patient for just a  little while longer.&#8221;</p></blockquote>
<p>This reply I&#8217;ve received when asking for a specific date (in Dutch):</p>
<blockquote><p>Geachte Sven Schelfaut</p>
<p>Hartelijk dank voor Uw email. Mocht U in de toekomst nog vragen of  opmerkingen hebben dan kan U bellen met 020 7157310 of ons een email  sturen. Helaas hebben we tot op heden nog geen data doorgekregen voor de  Benelux. Hetb beste wat u kan doen is onze website in de gaten te  houden daar de update hier te vinden zal zijn.</p>
<p>Vriendelijke groet,</p>
<p>Dimphy v I<br />
HTC</p></blockquote>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 57px; width: 1px; height: 1px; overflow: hidden;">Geachte Sven Schelfaut</p>
<p>Hartelijk dank voor Uw email. Mocht U in de toekomst nog vragen of  opmerkingen hebben dan kan U bellen met 020 7157310 of ons een email  sturen. Helaas hebben we tot op heden nog geen data doorgekregen voor de  Benelux. Hetb beste wat u kan doen is onze website in de gaten te  houden daar de update hier te vinden zal zijn.</p>
<p>Vriendelijke groet,</p>
<p>Dimphy v I<br />
HTC</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=195</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need a .NET Excel library?</title>
		<link>http://schelfaut.net/?p=192</link>
		<comments>http://schelfaut.net/?p=192#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:28:31 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[CodePlex]]></category>
		<category><![CDATA[Microsoft Excel]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=192</guid>
		<description><![CDATA[As a developer, you definitely need to read or manipulate Excel files at some point. There are a lot of ways to do this: The best known method is to make use of the Excel Interop library. This method has some big disadvantages if you want to use it in a web development environment: Excel [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer, you definitely need to read or manipulate Excel files at some point.<br />
There are a lot of ways to do this:</p>
<ul>
<li>The best known method is to make use of the <a href="http://support.microsoft.com/kb/302084" target="_blank">Excel Interop library</a>.<br />
This method has some big disadvantages if you want to use it in a web development environment:<br />
Excel needs to be installed on your web server and the Excel process needs to run.<br />
Each user who needs Excel interaction on your website needs his own Excel process<br />
and sometimes these processes just don&#8217;t close.<br />
Using the Interop library is a good solution for single user Windows applications.</li>
<li>If you only need data from your Excel file, you can use <a href="http://zamov.online.fr/EXHTML/ASPNET/ASPNET3.html" target="_blank">OLEDB</a> or just download a <a href="http://code.google.com/p/linqtoexcel/" target="_blank">LINQ to Excel library</a>.<br />
The last one uses OLEDB too, but using LINQ is so much more fun. Off course this system only works for well structured and simple tabular data.<br />
Another problem that pops out is the lack of a 64 bit OLEDB provider for Excel, so you must compile your code for 32 bit machines.<br />
Too bad, you can&#8217;t use the full power of that 64 bit processor&#8230;</li>
</ul>
<p>Bringing in count all the disadvantages of the methods above, I started looking for a .NET library which does the job for me.<br />
The library needed to have the following requirements: read values and cell properties (background color,..) of both Excel 2007 and the old Excel format.<br />
There are some paid one&#8217;s that will do the job quite well, but I have found 2 open source (and free) libraries that fitted my needs:</p>
<ul>
<li>For the old Excel format: <a href="http://npoi.codeplex.com/" target="_blank">NPOI</a>. This CodePlex project is the .NET version of the POI Java project. This is a very mature product which offers a lot of possibilites.<br />
Support for the Open XML format would be a nice feature!</li>
<li>For the Open XML Excel format I&#8217;ve chosen <a href="http://excelpackage.codeplex.com/" target="_blank">ExcelPackage</a>, which can be found on CodePlex too.<br />
As we know the <a href="http://en.wikipedia.org/wiki/Office_Open_XML" target="_blank">Open XML format</a> is in fact a ZIP-package which includes separate XML definition files for styles and data.<br />
The standard version of the library only parses the data in the file, but if you look a little bit further, you will find an <a href="http://excelpackage.codeplex.com/WorkItem/View.aspx?WorkItemId=21845" target="_blank">extended version</a> which parses the styles.xml file too. Pay attention with this because the package includes some XML parsing bugs!</li>
</ul>
<p>Now you can combine these two libraries, using a common interface, plugging in the right implementation according to the Excel format you have to process.</p>
<p>This is another fine example of the importance of <a href="http://www.codeplex.com/" target="_blank">CodePlex</a>.<br />
The Microsoft open source project has a big added value for developers these days!</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual studio tip #2: Go to line</title>
		<link>http://schelfaut.net/?p=188</link>
		<comments>http://schelfaut.net/?p=188#comments</comments>
		<pubDate>Tue, 23 Mar 2010 15:24:41 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=188</guid>
		<description><![CDATA[Another useful shortcut for the Visual Studio editor is CTRL + G. This key combination enables you to quickly navigate to a specific line in your code file. So there is no need to keep on scrolling until you reach the correct line!]]></description>
			<content:encoded><![CDATA[<p>Another useful shortcut for the Visual Studio editor is <strong>CTRL + G</strong>.<br />
This key combination enables you to quickly navigate to a specific line in your code file.<br />
So there is no need to keep on scrolling until you reach the correct line!</p>
<p><a href="http://schelfaut.net/wp-content/uploads/2010/03/GotoLine.png"><img class="alignnone size-full wp-image-189" title="Go To Line" src="http://schelfaut.net/wp-content/uploads/2010/03/GotoLine.png" alt="" width="255" height="113" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=188</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual studio tip #1: format document</title>
		<link>http://schelfaut.net/?p=178</link>
		<comments>http://schelfaut.net/?p=178#comments</comments>
		<pubDate>Fri, 12 Mar 2010 09:56:23 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=178</guid>
		<description><![CDATA[It has been a while since my last post on this blog, but now I&#8217;m back. I will try to share some small Visual Studio tips on a regular basis, starting from now on. A useful feature in Visual Studio is the format document option, which you will find in the menu Edit -&#62; Advanced [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since my last post on this blog, but now I&#8217;m back.<br />
I will try to share some small Visual Studio tips on a regular basis, starting from now on.</p>
<p>A useful feature in Visual Studio is the format document option,<br />
which you will find in the menu <strong>Edit -&gt; Advanced -&gt; Format document</strong>.<br />
<a href="http://schelfaut.net/wp-content/uploads/2010/03/Format_doc_screenshot.png"><img class="size-medium wp-image-179 alignnone" title="Format document screenshot" src="http://schelfaut.net/wp-content/uploads/2010/03/Format_doc_screenshot-300x202.png" alt="" width="378" height="254" /></a></p>
<p>Off course it is quicker to use the shortcut keys (<strong>Ctrl+E,  D</strong>).<br />
Allthough Visual Studio does a lot of formatting by its own,<br />
there are some cases it doesn&#8217;t help you with that (i.e. in markup files)<br />
This feature works for all the supported file formats in Visual Studio 2010.<br />
So if you messed up your XAML or ASP.NET indentation, Ctrl+E, D is your magic shortcut!</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5: best Android applications</title>
		<link>http://schelfaut.net/?p=160</link>
		<comments>http://schelfaut.net/?p=160#comments</comments>
		<pubDate>Tue, 08 Dec 2009 20:40:19 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://schelfaut.net/?p=160</guid>
		<description><![CDATA[I&#8217;ve been using my HTC Hero Android phone for about 2 months now, so it is time to make a round-up of my best Android applications so far. Android Market contains about 18000 applications now. Barcode Scanner This application is just a simple barcode scanner, it scans a lot of barcode types, including QR-codes (which [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using my HTC Hero Android phone for about 2 months now,<br />
so it is time to make a round-up of my best Android applications so far.<br />
Android Market contains about 18000 applications now.</p>
<h3><a href="http://code.google.com/p/zxing/" target="_blank">Barcode Scanner</a></h3>
<p><strong><img class="alignnone" title="QR-code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=135x135&amp;chl=market://search?q=pname:com.google.zxing.client.android" alt="" width="135" height="135" /></strong></p>
<p>This application is just a simple barcode scanner, it scans a lot of barcode types, including QR-codes (which appear in this post).<br />
These codes can contain a lot of info, mostly URL&#8217;s. You find them more and more in advertising campaigns.<br />
This application can also be integrated in other applications, to pass barcode values to them.<br />
The interface is simple and user friendly, enabling you to quickly scan your barcodes.</p>
<h3><a href="http://www.shazam.com/" target="_blank"><strong>Shazam</strong></a></h3>
<p><strong><img class="alignnone" title="QR code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=135x135&amp;chl=market://search?q=pname:com.shazam.android" alt="" width="135" height="135" /></strong></p>
<p>This application enables you to identify the music that is played in your environment.<br />
The iPhone version of this application was already a success, now there is an Android version of this amazing app.<br />
On the iPhone, you have to pay for it, but the Android version is still free.<br />
You can store the recognized songs as &#8220;tags&#8221; for later use.</p>
<h3><a href="http://www.gmote.org/" target="_blank">Gmote</a></h3>
<p><strong><img class="alignnone" title="QR code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=135x135&amp;chl=market://search?q=pname:org.gmote.client.android" alt="" width="135" height="135" /></strong></p>
<p>This application offers a lot of features:<br />
Play movies and music files on your pc.<br />
Play movies and music from your pc on your phone<br />
Control the desktop&#8217;s mouse with your Android phone&#8217;s touchscreen.<br />
Control keyboard input with your phone&#8217;s touch keyboard.<br />
All you have to do is install the Gmote Server on your pc and add your favourite music or movie folders.<br />
In the settings of the server application, you specify a password, which has to be used on the phone application.<br />
The good thing about the application is that it uses Wifi to connect to Gmote server, so you can control your pc from a very long distance.</p>
<h3><a href="http://www.swift-app.com/" target="_blank">Swift</a></h3>
<h3><img class="alignnone" title="QR-code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=135x135&amp;chl=market://search?q=pname:com.swift_app.app" alt="" width="135" height="135" /></h3>
<p>There are already a lot of Twitter applications in Android market, but the big killer app is not there yet, if you asked me.<br />
For the moment, I am using Swift om my HTC Hero. The UI could be better, but the application offers the functionality I expect from a Twitter client and above all: it works very smoothly.<br />
You can scroll endlessly through your Twitter timeline, but also the &#8220;Jump to now&#8221; feature is interesting.<br />
Notifications of tweets, mentions and direct messages can be configured easily.<br />
You can also look up profiles and search on Twitter. The application enables you to save your Twitter searches.<br />
It is possible to add images and videos to your post, choosing the upload service fits best.<br />
The application contains its own built-in browser, so you can navigate fast from links in tweets and back.</p>
<h3><a href="http://www.estrongs.com/en/products.html" target="_blank">EStrongs File Explorer</a></h3>
<h3><img title="QR-code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=135x135&amp;chl=market://search?q=pname:com.estrongs.android.pop" alt="" width="135" height="135" /></h3>
<p>A File Explorer can&#8217;t be missed on an Android phone.<br />
ES File Explorer enables you to explore all folders on your phone&#8217;s sd card and you can open, copy and delete files.<br />
The big difference with the most other applications is that you can also explore Windows shares with this one.<br />
It is also possible to copy files between Windows shares and the sd card.</p>
]]></content:encoded>
			<wfw:commentRss>http://schelfaut.net/?feed=rss2&amp;p=160</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
