One common tasks that I have needed to do while working with SharePoint 2007 (MOSS) is to retrieve information in regards lists or libraries. You need this information when you want to perform add, update, or delete functions when working with data from a document library. In today's post I will...
In WSS 3.0, the creation of web parts is easier than ever. Since WSS 3.0 is fully based on and built around ASP.Net 2.0 you can leverage the .net framework to do your heavy lifting. Today I thought I would create a simple post on how to create your very first web part. If you want a more in-depth how...
Today I ran into a pesky little issue when trying to query documents from sharepoint. In a previous example I talked about how to query documents from sharepoint, but what I did not know at the time is that if you have a field name that has a whitespace, you have to do some extra work. If you have a...
Today I was working with a WPF project and when I went to run the application I got the following error 'Cannot locate resource 'FileName.xaml'. Note, this is NOT a compiler error, this is a runtime error. When I opened up the App.xaml file, the StartupUri appeared to be correct, but I would still get...
If you have ever worked with XML, you know that XPath is your friend. Today I working with an XML document that was generated via MSWord and the generated document was well formed and included namespaces. Now, I have worked with namespaces in XML in the past, but it has been a LONG time. I thought I...