Showing posts with label SharePoint. Show all posts
Showing posts with label SharePoint. Show all posts

Monday, January 11, 2010

SharePoint Print List (SPPrintList) Released!

SharePoint Print List (SPPrintList) solution is now released on CodePlex.
This tool can be used to print a view from any list or library within SharePoint.

Supports views as well as sorting and filtering :-)

Go to SPPrintList Project on CodePlex for more info and download...

Wednesday, January 6, 2010

SharePoint Feature Manager

I've just finished publishing a CodePlex project for SharePoint Feature Manager, SPFeatureManager.

If you've ever wanted to activate/deactivate a Feature on multiple sites in one operation, look no further.

Visit SPFeatureManager Project on CodePlex for more information and download.

Tuesday, November 27, 2007

SharePoint CAML - filtering on DateTime WITH TimeValue. Finally a solution...

After searching the Internet for quite long now, I've finally managed to locate a solution to executing SPQuery in SharePoint (CAML), by filtering on the TimeValue in DateTime columns.

There have not been any (good) documentation on CAML Queries or SPQuery in the SharePoint SDK.

My temporary solution was to retrieve a larger collection based on the Date-value in DateTime, and then filter on Time-value manually. The code was quite ugly and time-consuming....

Well, as mentioned, there is now a solution to the problem:

The key is to include the following property/parameter in the DateTime tag in the CAML query: IncludeTimeValue="True"

<Value Type=”DateTime” IncludeTimeValue=”TRUE”><Today /></Value>
Creds goes to ucsharp, for posting this in his blog

Business Card