<?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>W0ut SharePoint and .NET</title>
	<atom:link href="http://blog.amtopm.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amtopm.be</link>
	<description>Blog about SharePoint and .NET developing.</description>
	<lastBuildDate>Thu, 24 May 2012 19:40:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.amtopm.be' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>W0ut SharePoint and .NET</title>
		<link>http://blog.amtopm.be</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.amtopm.be/osd.xml" title="W0ut SharePoint and .NET" />
	<atom:link rel='hub' href='http://blog.amtopm.be/?pushpress=hub'/>
		<item>
		<title>Localize (hidden) list templates.</title>
		<link>http://blog.amtopm.be/2011/10/13/localize-list-templates/</link>
		<comments>http://blog.amtopm.be/2011/10/13/localize-list-templates/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 19:08:12 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Branding, Layout, look and feel]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web parts and solutions]]></category>
		<category><![CDATA[list template]]></category>
		<category><![CDATA[localize]]></category>
		<category><![CDATA[multilanguage]]></category>
		<category><![CDATA[variations]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=776</guid>
		<description><![CDATA[Introduction When in a (localized) variations site, certain &#8220;list templates&#8221; do not show when trying to create a new list. The &#8220;list template&#8221; is only available in the master variation with the locale set to English. Including list templates in your SharePoint (Visual Studio) projects can be straight forward. On a list do a &#8220;save [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=776&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>
When in a (localized) variations site, certain &#8220;list templates&#8221; do not show when trying to create a new list. The &#8220;list template&#8221; is only available in the master variation with the locale set to English.</p>
<p>Including list templates in your SharePoint (Visual Studio) projects can be straight forward. On a list do a &#8220;save as template&#8221;, download the &#8216;stp&#8217; file and add it to your project. However they need to be localized to show in a localized (variations) site.</p>
<p>For information about localization see here : <a href="http://msdn.microsoft.com/en-us/goglobal/bb688174">http://msdn.microsoft.com/en-us/goglobal/bb688174</a></p>
<p><h2>The Solution</h2>
<p>To localize the stp files :</p>
<ul>
<li>Download the list template to your local computer.</li>
<li>Change the extension of the file from ‘stp’ to ‘cab’.</li>
<li>Open the cab file with your compression tool of choice (I use WinRar)</li>
<li>Extract the manifest.xml to your hard drive.</li>
<li>Open the manifest.xml with Notepad  </li>
<li>You will notice that there is a &lt;language&gt; tag is defined.<br />In my sample this is:<br />
        <pre class="brush: xml;">&lt;Language&gt;1033&lt;/Language&gt;</pre>
        </li>
<li>Simply change the number between the language tags to the desired ‘locale’.<br />
<strong>Examples:</strong><br />
 Dutch is number 1043<br />
 French is number 1036.</p>
<p>For a full list of the defined locale numbers look here:<br />
<a href="http://msdn.microsoft.com/en-us/goglobal/bb964664" title="http://msdn.microsoft.com/en-us/goglobal/bb964664" target="_blank">http://msdn.microsoft.com/en-us/goglobal/bb964664</a></li>
<li>Save the manifest.xml</li>
<h4>Create new stp file</h4>
<li>Now we will recreate the cab file with CABARC. See details below.</li>
<li>Open the command prompt and type the following command:<br />
CABARC.EXE  N &#8220;CarouselTemplateNL.cab&#8221; C:\Temp\Project1\CarouselTemplateNL\*.* </p>
</li>
<li>This will result in a new cab file called: “CarouselTemplateNL.cab”</li>
<li>Rename the file back to .stp</li>
<li>Upload the file into your list templates gallery<br />
Site Actions -&gt; Site settings -&gt; Galleries -&gt; List templates -&gt; Upload document </p>
<p><a href="http://lawo.files.wordpress.com/2011/10/listtemplates.png"><img src="http://lawo.files.wordpress.com/2011/10/listtemplates.png?w=500&h=171" alt="" title="listtemplates" width="500" height="171" class="alignnone size-full wp-image-781" /></a></p>
</li>
</ul>
<h3>CABARC</h3>
<p>&#8220;CABARC&#8221; is a program from Microsoft to create cab files. Lately it has been replaced by a new program called &#8220;makecab&#8221;.</p>
<p>CABARC did the job for me but you probably can achieve the same result with makecab</p>
<p>You can download CABARC by downloading the Windows XP Service Pack 2 Support Tools<br />
<a href="http://www.microsoft.com/download/en/details.aspx?id=18546" target="_blank">http://www.microsoft.com/download/en/details.aspx?id=18546</a> <br />
There is no need to install this package. Just unzip the file (and it’s cab files) to your locale machine. One of the unzipped files is CABARC. </p>
<p></p>
<blockquote><p><strong>Tip for when you don’t know what locales are installed on your SharePoint server. </strong><br /> The quickest way is go to the SharePoint installation folder (aka ’14 hive’) and look in the /TEMPLATE/LAYOUTS folder.</p>
<p><a href="http://lawo.files.wordpress.com/2011/10/folderlocales.png"><img src="http://lawo.files.wordpress.com/2011/10/folderlocales.png?w=500&h=245" alt="" title="FolderLocales" width="500" height="245" class="alignnone size-full wp-image-780" /></a></p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/776/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=776&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/10/13/localize-list-templates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/10/listtemplates.png" medium="image">
			<media:title type="html">listtemplates</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/10/folderlocales.png" medium="image">
			<media:title type="html">FolderLocales</media:title>
		</media:content>
	</item>
		<item>
		<title>Update vs Systemupdate vs UpdateOverwriteVersion</title>
		<link>http://blog.amtopm.be/2011/09/06/update-vs-systemupdate-vs-updateoverwriteversion/</link>
		<comments>http://blog.amtopm.be/2011/09/06/update-vs-systemupdate-vs-updateoverwriteversion/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 18:30:28 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Workflows]]></category>
		<category><![CDATA[differences]]></category>
		<category><![CDATA[Event handler]]></category>
		<category><![CDATA[Modified by]]></category>
		<category><![CDATA[systemupdate]]></category>
		<category><![CDATA[triggering events]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[UpdateOverwriteVersion]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[workflows]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=746</guid>
		<description><![CDATA[When creating event receivers or workflows it might be interesting to look at the differences between the following SPListItem methods. The differences might be subtle but it can make a huge difference when you have extra event receivers or workflows attached to your SharePoint list or items. Update() Updates the item in the database. Updates [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=746&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When creating event receivers or workflows it might be interesting to look at the differences between the following SPListItem methods. The differences might be subtle but it can make a huge difference when you have extra event receivers or workflows attached to your SharePoint list or items.</p>
<h3>Update()</h3>
<ul>
<li>Updates the item in the database.</li>
<li>Updates the &#8220;Modified&#8221; and &#8220;Modified by&#8221; values.</li>
<li>Creates a new version</li>
</ul>
<h3>Systemupdate()</h3>
<ul>
<li>Updates the item in the database.</li>
<li>No changes in the &#8220;Modified&#8221; and &#8220;Modified By&#8221; fields.</li>
<li>No new version.</li>
<li>Triggers the item events.</li>
</ul>
<h3>Systemupdate(true)</h3>
<ul>
<li>Same as Systemupdate() and increments the item version.</li>
<li>Using SystemUpdate(false) is exactly the same as SystemUpdate()</li>
</ul>
<h3>UpdateOverwriteVersion()</h3>
<ul>
<li>Updates the item but does not create a new version.</li>
<li>Updates the &#8220;Modified&#8221; and &#8220;Modified by&#8221; values.</li>
</ul>
<p>
<b>Note that :</b><br />
You can also disable the triggering of events by using &#8220;this.EventFiringEnabled = false;&#8221;. Do your update and enable the events again with &#8220;this.EventFiringEnabled = true;&#8221;
</p>
<p>Hope it helps,<br />
W0ut</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/746/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/746/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/746/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=746&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/09/06/update-vs-systemupdate-vs-updateoverwriteversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>Tool: Application Tool manager 3.0</title>
		<link>http://blog.amtopm.be/2011/09/03/tool-application-tool-manager/</link>
		<comments>http://blog.amtopm.be/2011/09/03/tool-application-tool-manager/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 10:12:45 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[APM]]></category>
		<category><![CDATA[Application pool]]></category>
		<category><![CDATA[attach to process]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[Process ID]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=738</guid>
		<description><![CDATA[Quick description Application Tool Manager (APM) is a great utility when programming for SharePoint 2010 (and general (IIS) web development) . Very handy if you want to attach your debugger to a specific w3wp.exe Process ID (PID) The description on their website This freeware application is a System Tray utility for providing quick access to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=738&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Quick description</h3>
<p>Application Tool Manager (APM) is a great utility when programming for SharePoint 2010 (and general (IIS) web development) . Very handy if you want to attach your debugger to a specific w3wp.exe Process ID (PID)</p>
<p>The description on their website</p>
<blockquote><p>This freeware application is a System Tray utility for providing quick access to common IIS tasks which are useful on a SharePoint development box. It may also be useful to others working with IIS. In essence, it enumerates the app pools on your box and lets you right click &#8216;em to bounce &#8216;em!</p></blockquote>
<p>You can download the tool here&lt;: <a href="http://www.harbar.net/articles/apm.aspx">http://www.harbar.net/articles/apm.aspx</a></p>
<p>&nbsp;</p>
<p><a href="http://lawo.files.wordpress.com/2011/08/apm3a3_thumb.png"><img class="alignnone size-full wp-image-739" title="apm3a[3]_thumb" src="http://lawo.files.wordpress.com/2011/08/apm3a3_thumb.png?w=500&h=268" alt="" width="500" height="268" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/738/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/738/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=738&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/09/03/tool-application-tool-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/08/apm3a3_thumb.png" medium="image">
			<media:title type="html">apm3a[3]_thumb</media:title>
		</media:content>
	</item>
		<item>
		<title>The &#8216;Microsoft.Jet.OLEDB.4.0&#8242; provider is not registered on the local machine</title>
		<link>http://blog.amtopm.be/2011/08/24/provider-is-not-registered/</link>
		<comments>http://blog.amtopm.be/2011/08/24/provider-is-not-registered/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 19:49:03 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[JET]]></category>
		<category><![CDATA[Office integration]]></category>
		<category><![CDATA[OleDb]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=713</guid>
		<description><![CDATA[We often get Excel files with content to import into SharePoint. Most of the time I fire up Visual Studio and write a small console application to import the Excel data. However with SharePoint 2010 I got the error &#8220;The &#8216;Microsoft.Jet.OLEDB.4.0&#8242; provider is not registered on the local machine&#8221;. The idea When I need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=713&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>We often get Excel files with content to import into SharePoint. Most of the time I fire up Visual Studio and write a small console application to import the Excel data. However with SharePoint 2010 I got the error &#8220;The &#8216;Microsoft.Jet.OLEDB.4.0&#8242; provider is not registered on the local machine&#8221;.</em></p>
<h2>The idea</h2>
<p>When I need to import content into SharePoint using the oledb data is far the easiest way to read Excel files without having to install office on your SharePoint server.</p>
<p>You simply add an OleDbConnection , an OleDbCommand, an OleDbDataAdapter and a correctly formulated select statement.</p>
<p><pre class="brush: csharp;">
            string ConnectionString = @&quot;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\Import\Sample.xslx; Extended Properties=&quot;&quot;Excel 8.0;HDR=Yes&quot;&quot;;&quot;;
            string CommandText = &quot;SELECT * FROM [Services$]&quot;;

            OleDbConnection connection = new OleDbConnection(ConnectionString);
            OleDbCommand command = new OleDbCommand(CommandText, connection);
            connection.Open();

            OleDbDataAdapter adapter = new OleDbDataAdapter(command);

            DataSet dataset = new DataSet();
            adapter.Fill(dataset, &quot;Excel&quot;);
</pre></p>
<h2>The cause</h2>
<p>SharePoint 2010 is 64 bit so you need to compile your custom SharePoint code as a 64-bit applications. However the default Jet Library does not support 64-bit applications and thus results in the following error:</p>
<blockquote><p>The &#8216;Microsoft.Jet.OLEDB.4.0&#8242; provider is not registered on the local machine.</p></blockquote>
<h2>Solution</h2>
<p>Luckily Micosoft has released a solution in the form of the Microsoft Access Database Engine 2010 Redistributable</p>
<ol>
<li>Download the <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=13255">Microsoft Access Database Engine 2010 Redistributable</a></li>
<li>Install the package on your development machine</li>
<li>Modify your OleDb Connection string from:<br />
Provider=Microsoft.Jet.OLEDB.4.0; &#8230;.<br />
to<br />
Provider=Microsoft.ACE.OLEDB.12.0;&#8230;.</li>
<li>rebuild your application<strong><br />
note</strong>: make sure your application is set to compile as a 64 bit application</li>
</ol>
<p>Don&#8217;t forget to install this redistibutable on your SharePoint server as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/713/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=713&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/08/24/provider-is-not-registered/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>NLog configuration file to log like Log4Net.</title>
		<link>http://blog.amtopm.be/2011/07/21/nlog-configuration-file-to-log-like-log4net/</link>
		<comments>http://blog.amtopm.be/2011/07/21/nlog-configuration-file-to-log-like-log4net/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 14:15:53 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=689</guid>
		<description><![CDATA[Here is a NLog config file that generates a similar log file layout as with the (default) Log4Net settings. This NLog configuration also includes the date in the log file name to mimic the Log4Net &#8216;rollingFileAppender&#8217; behavior. file: NLog.config<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=689&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a <a href="http://nlog-project.org/">NLog </a>config file that generates a similar log file layout as with the (default) Log4Net settings.</p>
<p>This NLog configuration also includes the date in the log file name to mimic the Log4Net &#8216;rollingFileAppender&#8217; behavior.</p>
<p>file: NLog.config</p>
<p><pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
&lt;nlog xmlns=&quot;http://www.nlog-project.org/schemas/NLog.xsd&quot;
      xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
      autoReload=&quot;true&quot;&gt;

  &lt;targets&gt;
    &lt;target name=&quot;logfile&quot; xsi:type=&quot;File&quot; fileName=&quot;C:\Projects\logs\MainLog.${shortdate}.log&quot; layout=&quot;${level:padding=-6}  ${threadid:padding=-4} ${processid}   ${longdate}  ${logger:shortName=true:padding=-24} ${message} ${exception:format=ToString,StackTrace}&quot;/&gt;
  &lt;/targets&gt;

  &lt;rules&gt;
    &lt;logger name=&quot;*&quot; minlevel=&quot;Trace&quot; writeTo=&quot;logfile&quot; /&gt;
  &lt;/rules&gt;

&lt;/nlog&gt;

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/689/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=689&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/07/21/nlog-configuration-file-to-log-like-log4net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom master page error : &#8220;You must specify a value for this required field&#8221;</title>
		<link>http://blog.amtopm.be/2011/07/20/custom-master-page-error-you-must-specify-a-value-for-this-required-field/</link>
		<comments>http://blog.amtopm.be/2011/07/20/custom-master-page-error-you-must-specify-a-value-for-this-required-field/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 18:33:02 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Branding, Layout, look and feel]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=669</guid>
		<description><![CDATA[When using a custom master page and editing a page in SharePoint 2010 I received a dialog box the following error: &#8220;You must specify a value for this required field&#8221;. This error is caused when you set the contentplaceholder &#8216;PlaceHolderPageTitleInTitleArea&#8217; to: Visible=&#8221;False&#8221;. After removing the Visible=False attribute from the contentplaceholder the error disappeared. As a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=669&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When using a custom master page and editing a page in SharePoint 2010 I received a dialog box the following error: </p>
<blockquote><p>&#8220;You must specify a value for this required field&#8221;.</p></blockquote>
<p>This error is caused when you set the contentplaceholder &#8216;PlaceHolderPageTitleInTitleArea&#8217; to: Visible=&#8221;False&#8221;. After removing the Visible=False attribute from the contentplaceholder the error disappeared. </p>
<p>As a workaround you can wrap the contentplaceholder in a &lt;div&gt; and hide the div with a little CSS. That way the contentplaceholder is still in place but hidden for the user. </p>
<p><pre class="brush: xml;">
&lt;div style=&quot;display: none;&quot;&gt;
    &lt;asp:ContentPlaceHolder id=&quot;PlaceHolderPageTitleInTitleArea&quot; runat=&quot;server&quot; &gt;&amp;nbsp;&lt;/asp:ContentPlaceHolder&gt;
&lt;/div&gt;

</pre></p>
<p>
Hope it helps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/669/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=669&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/07/20/custom-master-page-error-you-must-specify-a-value-for-this-required-field/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>Format xslt date</title>
		<link>http://blog.amtopm.be/2011/06/21/format-xslt-date/</link>
		<comments>http://blog.amtopm.be/2011/06/21/format-xslt-date/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 20:48:46 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Branding, Layout, look and feel]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=726</guid>
		<description><![CDATA[To format data in SharePoint I often use xslt. The default formatting of dates however is pretty useless &#60;xsl:value-of select="@YourDateParam"/&#62; Results in : 2009-03-23 00:00:00 &#160; You can also use a predefined locale like this: &#60;xsl:value-of select="ddwrt:FormatDate(@YourDateParam, 1033, 15)"/&#62; Results in : Thursay, August 24, 2011 09:00:00 PM &#160; If your required date time format [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=726&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To format data in SharePoint I often use xslt. The default formatting of dates however is pretty useless</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">xsl:value-of</span> <span class="attr">select</span><span class="kwrd">="@YourDateParam"</span><span class="kwrd">/&gt;</span></pre>
<p>Results in : 2009-03-23 00:00:00</p>
<p>&nbsp;</p>
<p>You can also use a predefined locale like this:<br />
<!-- code formatted by http://manoli.net/csharpformat/ --></p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">xsl:value-of</span> <span class="attr">select</span><span class="kwrd">="ddwrt:FormatDate(@YourDateParam, 1033, 15)"</span><span class="kwrd">/&gt;</span></pre>
<p>Results in : Thursay, August 24, 2011 09:00:00 PM</p>
<p>&nbsp;</p>
<p>If your required date time format is not available, you can also define a custom date time formatting.</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">xsl:value-of</span> <span class="attr">select</span><span class="kwrd">="ddwrt:FormatDateTime(string(@YourDateParam) ,1033 ,'dd-MMM-yyyy')"</span> <span class="kwrd">/&gt;</span></pre>
<p>Results in : 22-03-2011</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">xsl:value-of</span> <span class="attr">select</span><span class="kwrd">="ddwrt:FormatDateTime(string(@YourDateParam) ,1033 ,'dd/MMM/yyyy')"</span> <span class="kwrd">/&gt;</span></pre>
<p>Results in: 22/Sep/2011</p>
<h3>Other formats</h3>
<table width="402" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="306"><strong>Output</strong></td>
<td valign="top" width="36"><strong>Locale</strong></td>
<td valign="top" width="59"><strong>Format</strong></td>
</tr>
<tr>
<td valign="top" width="306">3/23/2009</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">1</td>
</tr>
<tr>
<td valign="top" width="306">3/23/2009 12:00 AM</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">2</td>
</tr>
<tr>
<td valign="top" width="306">Monday, March 23 2009</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">3</td>
</tr>
<tr>
<td valign="top" width="306">12:00 AM</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">4</td>
</tr>
<tr>
<td valign="top" width="306">Monday, March 23, 2009 12:00 AM</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">7</td>
</tr>
<tr>
<td valign="top" width="306">3/23/2009 12:00:00 AM</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">13</td>
</tr>
<tr>
<td valign="top" width="306">Monday, March 23, 2009 12:00:00 AM</td>
<td valign="top" width="36">1033</td>
<td valign="top" width="59">15</td>
</tr>
<tr>
<td valign="top" width="306">23/03/2009</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">1</td>
</tr>
<tr>
<td valign="top" width="306">3/23/2009 12:00 AM</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">2</td>
</tr>
<tr>
<td valign="top" width="306">23 March 2009</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">3</td>
</tr>
<tr>
<td valign="top" width="306">00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">4</td>
</tr>
<tr>
<td valign="top" width="306">23/03/2009 00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">5</td>
</tr>
<tr>
<td valign="top" width="306">23 March 2009 00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">7</td>
</tr>
<tr>
<td valign="top" width="306">00:00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">12</td>
</tr>
<tr>
<td valign="top" width="306">23/03/2009 00:00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">13</td>
</tr>
<tr>
<td valign="top" width="306">23 March 2009 00:00:00</td>
<td valign="top" width="36">2057</td>
<td valign="top" width="59">15</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/726/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=726&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/06/21/format-xslt-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>.NET Continuous Integration with TeamCity</title>
		<link>http://blog.amtopm.be/2011/05/29/net-continuous-integration-with-teamcity/</link>
		<comments>http://blog.amtopm.be/2011/05/29/net-continuous-integration-with-teamcity/#comments</comments>
		<pubDate>Sun, 29 May 2011 10:30:06 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=661</guid>
		<description><![CDATA[Christophe Geers has a great article about how to setup a build server with Jetbrains TeamCity. Read his article here: http://cgeers.com/2011/05/28/running-unit-tests-with-teamcity/ I &#8216;m planning on integrating a build server in my Media Center. I was still reading up on all the different products and technologies available. After reading Christophe&#8217;s article I might go for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=661&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://cgeers.com/">Christophe Geers</a> has a great article about how to setup a build server with Jetbrains TeamCity.  </p>
<p>Read his article here:<br />
<a href="http://cgeers.com/2011/05/28/running-unit-tests-with-teamcity/">http://cgeers.com/2011/05/28/running-unit-tests-with-teamcity/</a><br />
<br />
I &#8216;m planning on integrating a build server in my Media Center. I was still reading up on all the different products and technologies available. After reading Christophe&#8217;s article I might go for the TeamCity as well. </p>
<p>Regards,</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/661/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=661&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/05/29/net-continuous-integration-with-teamcity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>Tools: dotPeek. The free decompiler.</title>
		<link>http://blog.amtopm.be/2011/05/11/tools-the-free-decompiler/</link>
		<comments>http://blog.amtopm.be/2011/05/11/tools-the-free-decompiler/#comments</comments>
		<pubDate>Wed, 11 May 2011 18:50:41 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[.Net community]]></category>
		<category><![CDATA[.NET Reflector]]></category>
		<category><![CDATA[dotPeek]]></category>
		<category><![CDATA[free decompiler]]></category>
		<category><![CDATA[JetBrains]]></category>
		<category><![CDATA[RedGate]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=606</guid>
		<description><![CDATA[Good news!! JetBrains released the first version of their free decompiler tool, dotPeek. Since the February 2011 the .NET community was looking forward for a new free decompiler tool after RedGate announced that their insanly popular decompiler tool &#8216;Reflector&#8217; would no longer be free. Jetbrains reacted and is giving the .Net community: dotPeek. DotPeek was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=606&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Good news!! JetBrains released the first version of their free decompiler tool, <a href="http://www.jetbrains.com/decompiler/?dotnetblog">dotPeek</a>.</p>
<p>Since the February 2011 the .NET community was looking forward for a new free decompiler tool after RedGate announced that their insanly popular decompiler tool &#8216;Reflector&#8217; would no longer be free. Jetbrains reacted and is giving the .Net community: <strong>dotPeek</strong>.</p>
<p>DotPeek was already available with Resharper (beta) builds but now it&#8217;s also available as a standalone version!</p>
<p>Download the goodness here:<br />
<a href="http://blogs.jetbrains.com/dotnet/2011/05/free-net-decompiler-is-available-for-early-access/"> http://blogs.jetbrains.com/dotnet/2011/05/free-net-decompiler-is-available-for-early-access/</a></p>
<p>It&#8217;s free and supports .Net assemblies from version 1.0 to 4.0.</p>
<p>I&#8217;m a long time fan of JetBrains Resharper product. If the quality of dotPeek is equally good then RedGate Reflector will soon be forgotten. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Keep up the good work!!</p>
<p>Regards, W0ut</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/606/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=606&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/05/11/tools-the-free-decompiler/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Maps in SharePoint 2010 using standard functionality.</title>
		<link>http://blog.amtopm.be/2011/05/04/use-google-maps-in-sharepoint-oob/</link>
		<comments>http://blog.amtopm.be/2011/05/04/use-google-maps-in-sharepoint-oob/#comments</comments>
		<pubDate>Wed, 04 May 2011 15:48:24 +0000</pubDate>
		<dc:creator>W0ut</dc:creator>
				<category><![CDATA[Branding, Layout, look and feel]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web parts and solutions]]></category>
		<category><![CDATA[Content editor]]></category>
		<category><![CDATA[Display HTML assets]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google maps web part]]></category>
		<category><![CDATA[insert map]]></category>
		<category><![CDATA[OOB]]></category>
		<category><![CDATA[Out of box]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[standard functionlaity]]></category>
		<category><![CDATA[webpart]]></category>

		<guid isPermaLink="false">http://lawo.wordpress.com/?p=549</guid>
		<description><![CDATA[Introduction. In SharePoint 2010 you can use Google Maps without having to download extra webparts or third party tools. In this article I will explain how you can insert &#8220;Google Maps&#8221; maps in your SharePoint 2011 site with only using standard out of the box SharePoint 2010 features. It&#8217;s a generic solution which can also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=549&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Introduction.</h3>
<p><em>In SharePoint 2010 you can use Google Maps without having to download extra webparts or third party tools. In this article I will explain how you can insert &#8220;Google Maps&#8221; maps in your SharePoint 2011 site with only using standard out of the box SharePoint 2010 features. </em></p>
<p><em>It&#8217;s a generic solution which can also be used to store HTML code that defines Flash and Silverlight HTML &#8216;assets&#8217;.</em></p>
<h3>1. Get your Google map code.</h3>
<ul>
<li>Go to Google maps</li>
<li>Find the location you want.</li>
<li>In the right hand corner of the map click on &#8220;Link&#8221;<br />
<a href="http://lawo.files.wordpress.com/2011/05/googlemapslink.png"><img class="alignnone size-full wp-image-557" style="border:1px solid black;" title="Googlemapslink" src="http://lawo.files.wordpress.com/2011/05/googlemapslink.png?w=500&h=206" alt="" width="500" height="206" /></a></li>
<li>Next click on &#8220;Customize and preview embedded map&#8221;.</li>
<li>Enter the desired options.</li>
<li>Copy the HTML code that Google generates for you.</li>
<li>Paste the HTML code in a text file (use notepad).</li>
<li>Save the text file to your hard drive.</li>
</ul>
<p>So you have the Google Map HTML code sitting in a text file now. Next step is to upload this file in SharePoint</p>
<h3>2. Store the HTML code in SharePoint.</h3>
<ul>
<li>Go to your SharePoint site.</li>
<li>Click on &#8216;Site Actions&#8217; =&gt;&#8217;More Options&#8217;.</li>
<li>Click create and create a new Document Library &#8220;<br />
<a href="http://lawo.files.wordpress.com/2011/05/createlibrary.png"><img class="alignnone size-full wp-image-558" style="border:1px solid black;" title="CreateLibrary" src="http://lawo.files.wordpress.com/2011/05/createlibrary.png?w=500&h=218" alt="" width="500" height="218" /></a></li>
<li>When the library is created. Click on &#8220;Add document&#8221;.</li>
<li>And upload the Google Map text file you created in the previous step</li>
</ul>
<p>Your Google Maps HTML code is in SharePoint now.  Next step: display it.</p>
<blockquote><p><strong>Note 1</strong>: An asset might be a more appropiate naming.  So an &#8220;Asset Library&#8221; might be a better choice. For simplicity sake we stick with a standard &#8220;Document Library&#8221;<br />
<strong>Note 2</strong>: Feel free to add your custom content types to the library and fill out out the required meta data.</p></blockquote>
<h3>3. Display the Google Map.</h3>
<p>Get the document url :</p>
<ul>
<li>Go the library from the previous step.</li>
<li>Click on the Google Maps document you want to display.</li>
<li>SharePoint opens this file as plain text in your browser.</li>
<li>Copy the url of this file from your browsers address bar.</li>
</ul>
<p>Add the Google Map to a page :</p>
<ul>
<li>Open the a SharePoint page.</li>
<li>Edit the page.</li>
<li>Add the Content Editor web part<br />
<a href="http://lawo.files.wordpress.com/2011/05/addcontenteditor.png"><img class="alignnone size-full wp-image-552" style="border:1px solid black;" title="AddContentEditor" src="http://lawo.files.wordpress.com/2011/05/addcontenteditor.png?w=500" alt=""   /></a></li>
<li>Clicking on &#8220;Edit Web part&#8221; in the web part context menu<br />
<a href="http://lawo.files.wordpress.com/2011/05/webpartedit.png"><img class="alignnone size-full wp-image-554" style="border:1px solid black;" title="webpartedit" src="http://lawo.files.wordpress.com/2011/05/webpartedit.png?w=500" alt=""   /></a></li>
<li>Insert the document url, of the Google Maps text document, in the &#8220;Content Link&#8221; box.<br />
<a href="http://lawo.files.wordpress.com/2011/05/contenteditorproperties.png"><img class="alignnone size-full wp-image-553" style="border:1px solid black;" title="ContentEditorProperties" src="http://lawo.files.wordpress.com/2011/05/contenteditorproperties.png?w=500" alt=""   /></a></li>
<li>Click on OK</li>
<li>Save the page.</li>
<li>If needed check-in and approve the page.</li>
</ul>
<p>That&#8217;s it. Your Google Map is now visible on the SharePoint site.</p>
<p>The nice thing is that you can reuse this map in your SharePoint site. And when the map changes (change of address, etc&#8230;) you only need to change the text file in your Document Library.</p>
<p>Regards,<br />
W0ut</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lawo.wordpress.com/549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lawo.wordpress.com/549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lawo.wordpress.com/549/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.amtopm.be&#038;blog=5427846&#038;post=549&#038;subd=lawo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.amtopm.be/2011/05/04/use-google-maps-in-sharepoint-oob/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf897b322ce5fe10ecc2c605066343b3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">W0ut</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/05/googlemapslink.png" medium="image">
			<media:title type="html">Googlemapslink</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/05/createlibrary.png" medium="image">
			<media:title type="html">CreateLibrary</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/05/addcontenteditor.png" medium="image">
			<media:title type="html">AddContentEditor</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/05/webpartedit.png" medium="image">
			<media:title type="html">webpartedit</media:title>
		</media:content>

		<media:content url="http://lawo.files.wordpress.com/2011/05/contenteditorproperties.png" medium="image">
			<media:title type="html">ContentEditorProperties</media:title>
		</media:content>
	</item>
	</channel>
</rss>
