Hi All,
I would like to share a link which allows you to download the Tip of the Day webpart for sharepoint.
You can download the webpart here.
Configuring the webpart is clearly explained in the site.
...
Dec 14, 2011
Dec 12, 2011
SlideShow with Thumbnails using Silverlight for SharePoint
I would like to share a link which shows how to create a Slide Show for SharePoint using Silverlight in Microsoft Visual Studio 2010.
http://deepumi.wordpress.com/2010/04/21/simple-image-scroller-slide-show-using-silverlight-listbox-control/
...
Embedding YouTube Videos to the SharePoint Site

Steps
1. Go to the YouTube site and navigate to the video which you like to embed in the SharePoint Application.
2. Click on Share button below the video as shown below
3. On clicking Share you will find two options as Mail or Embed as shown below
4. Copy...
Dec 11, 2011
Reading Custom Properties of Word Document
Part III
Read the Introduction about this article Part I
Read about reading the summary properties of word document in this article Part II
In this post, we can see what is the code for the reading the custom properties of the word document.
public static void GetDocumentCustomProperties(string filename)
{
OleDocumentPropertiesClass doc = new OleDocumentPropertiesClass();
...
Reading Summary Properties of Word Document
Part II
Read the Introduction about this article Part I
In this post, we can see what is the code for the reading the summary properties of the word document.
public static void GetDocumentSummaryProperties(string filename)
{
DSOFile.OleDocumentPropertiesClass doc = new DSOFile.
OleDocumentPropertiesClass();
doc.Open(filename, false,
DSOFile.dsoFileOpenOptions.dsoOptionOpenReadOnlyIfNoWriteAccess...
Reading Document Properties
Part I
We are going to discuss about a interesting topic which can be used in SharePoint and also in .Net.
It is possible to reading the summary properties and custom properties of the word document and it is also one of the requirements now a days.
This can be done through using DSO dll which can be downloaded from the below link
DSO Setup Download Link
(Important Note: This is a...
Twitter WebPart for SharePoint

I have already posted a link which will guide you in creating the twitter and Face book web parts for SharePoint in this article. Twitter and FaceBook for SharePoint. Have a look at this.
Yet another easiest way for twitter is as follows:
Steps:
1. Open the site page...
RSS Feeds WebPart
In this post we will see how to create RSS feeds web part for SharePoint. it is very easy and we will learn it in the following steps.
1. Add a XML web part to a share point page where you want to add the RSS Feeds web part.
2. Edit the properties of the web part.
3. In the XSL editor place the code (given below).
4. In the XML link give the proper RSS feeds URL.
5. Click...
Copying the File from and to Document Library in SharePoint
Let’s see how to copy the file from and to the document library using object model.
SPSite site = new site("http://siteurl");
using (site)
{
SPWeb web = site.OpenWeb();
using (web)
{
SPList lib1 = (SPDocumentLibrary)web.Lists["lib1"];
SPList lib2 = (SPDocumentLibrary)web.Lists["lib2"];
SPListItem item1 = lib1.Items[0];
byte[] fileBytes = item1.File.OpenBinary();
...
Displaying Multiple Document Libraries in a Single WebPart

A frequent requirement in the Share Point Projects is Displaying Multiple Libraries together in a single web part. It can be achieved by various methods but I am going to create it through Share Point Designer 2007.
In this article we will come to know how it can be done step by step.
1. The Important...