<?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>PeteStilgoe.com &#187; xml</title>
	<atom:link href="http://www.petestilgoe.com/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.petestilgoe.com</link>
	<description>&#34;Be fearful when others are greedy, be greedy when others are fearful.”</description>
	<lastBuildDate>Mon, 30 Jan 2012 14:28:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to create an Excel Workbook from an SQL database using Open XML SDK 2.0</title>
		<link>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/</link>
		<comments>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 16:26:01 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Open XML SDK]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[MS Excel]]></category>
		<category><![CDATA[Open XML SDK 2]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=872</guid>
		<description><![CDATA[

Below is the C# code to create a new Excel workbook based on a template file &#038; populated by an SQL database.
You need to add references to:
DocumentFormat.OpenXml
System.Data.Linq
Windows.Base

using System;
using System.IO;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;

namespace ElitetoExcel
{
    class Program
    {
        static string[] [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Populating an Infopath dropdown using a specific Sharepoint list view</title>
		<link>http://www.petestilgoe.com/2010/07/populating-an-infopath-dropdown-using-a-specific-sharepoint-list-view/</link>
		<comments>http://www.petestilgoe.com/2010/07/populating-an-infopath-dropdown-using-a-specific-sharepoint-list-view/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:23:16 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[Sharepoint How To]]></category>
		<category><![CDATA[Sharepoint Lists]]></category>
		<category><![CDATA[Sharepoint Views]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[infopath tips & tricks]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=612</guid>
		<description><![CDATA[

If you have a Sharepoint list containing multiple views, one view shows all approved items and another view shows all items that are pending approval.  You have an Infopath form where you have a dropdown control that you want to be populated with only &#8216;Approved&#8217; list items from your Sharepoint list.
If you create your [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/07/populating-an-infopath-dropdown-using-a-specific-sharepoint-list-view/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to display most viewed documents from a Document Library</title>
		<link>http://www.petestilgoe.com/2010/05/how-to-display-most-viewed-documents-from-a-document-library/</link>
		<comments>http://www.petestilgoe.com/2010/05/how-to-display-most-viewed-documents-from-a-document-library/#comments</comments>
		<pubDate>Thu, 13 May 2010 06:45:58 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Sharepoint / MOSS / WSS]]></category>
		<category><![CDATA[Sharepoint How To]]></category>
		<category><![CDATA[Sharepoint Webparts]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[XML Webpart]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=579</guid>
		<description><![CDATA[

Came accross an interesting solution on Linkedin to display most viewed Documents from a Document Library in a webpart.  I havnt tried it myself but sounds like it would work:
1) Install LogParser on Web App Server (Sharepoint Index Server) 
2) Setup a batch file with the LogParse query of your choice.
For example:
&#8220;C:\Program Files\Log Parser [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/05/how-to-display-most-viewed-documents-from-a-document-library/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to autopopulate Infopath fields using Sharepoint list data</title>
		<link>http://www.petestilgoe.com/2010/04/how-to-autopopulate-infopath-fields-using-sharepoint-list-data/</link>
		<comments>http://www.petestilgoe.com/2010/04/how-to-autopopulate-infopath-fields-using-sharepoint-list-data/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 07:41:50 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[Sharepoint Lists]]></category>
		<category><![CDATA[Sharepoint Lookup Columns]]></category>
		<category><![CDATA[infopath autopopulate]]></category>
		<category><![CDATA[infopath tips & tricks]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=572</guid>
		<description><![CDATA[

1) Get your Sharepoint list into XML format 
2) Set up a data connection using the above XML file as your datasource
3) Now you need to configure rules and filters on your list box. Let&#8217;s say that your list box has customer name and you wish to fill a field with the customer phone. When [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/04/how-to-autopopulate-infopath-fields-using-sharepoint-list-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting a Sharepoint List into XML</title>
		<link>http://www.petestilgoe.com/2009/11/converting-a-sharepoint-list-into-xml/</link>
		<comments>http://www.petestilgoe.com/2009/11/converting-a-sharepoint-list-into-xml/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 08:45:17 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Sharepoint / MOSS / WSS]]></category>
		<category><![CDATA[Sharepoint Lists]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=480</guid>
		<description><![CDATA[

This easiest way is to use the URL below &#038; insert your list GUID
http://servername/site/_vti_bin/owssvr.dll?Cmd=Display&#038;List=*YOURUNIQUELISTID*&#038;XMLDATA=TRUE
To get the GUID of the list you need to go into the list &#038; click &#8216;Settings&#8217; -> &#8216;List Settings&#8217;.  Now if you look at your URL you will see something like:
/_layouts/listedit.aspx?List=%7B7B476F98%2D1075%2D4A6D%2D8F63%2D4C754B3F41FC%7D
The URL is encoded so you will need to replace [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2009/11/converting-a-sharepoint-list-into-xml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create a XML Test Page for Search Results</title>
		<link>http://www.petestilgoe.com/2009/10/create-a-xml-test-page-for-search-results/</link>
		<comments>http://www.petestilgoe.com/2009/10/create-a-xml-test-page-for-search-results/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 11:05:12 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Sharepoint Search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search results]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=456</guid>
		<description><![CDATA[

How to create a XML test page for search results:
How to create a XML test page for search results

]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2009/10/create-a-xml-test-page-for-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

