Dec 20, 2011

Deploying Silverlight Application in SharePoint 2010

In the previous article, we have discussed about creating a simple Silverlight Application in Microsoft Visual Studio 2010. Now, in this article we will discuss how to deploy the solution in the SharePoint 2010. The New webpart feature added in the SharePoint 2010 and SharePoint Foundation 2010 is...

Creating a Simple Silverlight Application in Microsoft Visual Studio 2010

In the previous article ,we have discussed about the basics of Silverlight and In this article, we will discuss how to create a simple silverlight application using Microsoft Visual Studio 2010. Go to Visual Studio File ->New Project                                            ...

Dec 19, 2011

Silverlight Basic Tutorials

What is Silverlight? Various Definitions from the internet:       1. Microsoft Silverlight is a web application framework that integrates multimedia, computer graphics, animation and interactivity into a single runtime environment. 2. Silverlight is a new cross-browser, cross-platform implementation of the .NET Framework for building and delivering the next generation of media...

Dec 15, 2011

Creating Custom Properties in Word 2007

In the previous article, I have explained about creating custom properties in word 2003. In this article, we will see how to create custom properties in word 2007. It is slightly different from word 2003 and involves the following steps. 1. Open the Microsoft Word 2007 and create a new word document. 2....

Creating Custom properties in Word 2003

In the articles Part I,Part II and Part III we have discussed about how to read the custom properties of word 2003 using  DSO dll in C# .Net. In this article we are going to see about creating a bookmark and set the custom properties for the Microsoft Word 2003. Steps 1. Open...

Dec 14, 2011

MediaWebPart in SharePoint 2010

In this article, we will discuss how to use the out of box webpart named "Media WebPart" in SharePoint 2010. Note : This webpart is prsent only in the SharePoint 2010 and SharePoint foundation. Steps: 1. Go to the sharepoint where you want to add the media webpart. 2. Go to Edit Page ->...

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(); ...