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...
Dec 11, 2011
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...
Dec 9, 2011
Recommendations for maintaining Infopath performance
I'm creating an InfoPath form that is a bit large and starting to lag so I decided to look up better practices for developing InfoPath forms to maintain performance. Here is what I found online:
- Keep views from being too large or complex. Split large views into several smaller ones with buttons to switch between them.
- Avoid lots of tables (data or layout) in any single view.
- Use Master/Detail...
SharePoint Designer opens in contributor mode
We may face some situation, while editing the site using Sharepoint Designer, it will get open in Contributor mode and we will not be able to edit the site, eventhough we have the Site Collection Administrator(SCA) permission.
By default, Contribute permissions are assigned to the Site Collection Members group. Even though, we are part of SCA group, if we are member of Site...
How to convert Infopath form to word document
Sometimes you may need to convert an InfoPath form into a Word document so you can send it to users that either don’t have InfoPath or can’t access your SharePoint form library. Luckily there is an easy process to do so.
Steps to convert InfoPath form to Word:
1) Open your .xsn InfoPath project file
2) Go to File -> Export To -> Web
3) Enter a name for the file and make sure...
Integrating Twitter and FaceBook in SharePoint
I would like to share the link which is very simple and clear way of integrating the twitter and facebook in SharePoint.
Twitter Integration
http://code.google.com/p/sharepoint-twitter/wiki/GettingStarted
Face Book Integration
http://code.google.com/p/sharepoint-facebook-wall/wiki/GettingStarted
Happy Sharing!
...