Monday, May 21, 2012 1:04

‘SharePoint’ News

Subscribe to RSS feed

Adlib PDF for SharePoint 2010

Tuesday, April 12, 2011 2:11

Original article: http://blog.adlibsoftware.com/2010/06/29/adlib-pdf-for-sharepoint-2010-link-your-pdf-rendition-back-to-the-source/ UKOOM's comment:  A good news for enterprise. Adlib is the mature PDF conversion product which is used in lots of big company. This is the first in a 3-part series reviewing the features of Adlib PDF for SharePoint 2010 that extend and embrace the SharePoint ...

Tips and Tricks for Developing with Windows SharePoint Services – SharePoint 2003

Saturday, April 9, 2011 2:47

This article is from MSDN http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx Summary: Learn programming techniques that can help make your Windows SharePoint Services Web Parts and applications faster, safer and more reliable, easier to deploy, and even more user-friendly. Author Marco Bellinaso compiled this collection of tips and tricks into a well-organized, single ...

SharePoint Internal name, Static name, Display name

Saturday, April 9, 2011 2:42

A SharePoint column (field) can be retrieved from the object model in many different ways. Some of them use the internal name while others use the display name. Recently, when creating a column, I came across another field type called Static Name. I wasn't sure what ...

Tagged with:

SharePoint 2010 API – TryGetList

Saturday, April 9, 2011 2:38

We don't need the try-catch block to loop the site to just find a list in SharePoint 2010 now!!!!! In SharePoint 2010, there is a new API - TryGetList provided by SPListCollection. e.g. if (rootWeb.Lists.TryGetList(StringConsts.DocumentRelationshipTypeList) == null) {} Good news!!!!

Tagged with:

SharePoint 2010 Database Naming Conversion

Saturday, April 9, 2011 2:25

This article is from http://blogs.msdn.com/b/johnwpowell In a previous post I made a case for following a database naming standard for SharePoint databases.  What started as an investigation into how to rename the auto-generated SharePoint 2010 databases led me down a path bordering obsession.  I spent several ...

Tagged with:

SharePoint Database Naming Conversion

Saturday, April 9, 2011 2:23

This article is from http://blogs.msdn.com/b/johnwpowel Call me picky, but I think it’s important to consistently name your SharePoint databases—especially on a shared SQL Server hosting multiple farms and applications.  Not only is it a good practice, but by showing that you care about the databases, you’ll earn ...

Tagged with:

Use an Edit Control Block Menu Item to Create a Conversion Job

Saturday, April 9, 2011 0:57

This article is from MSDN:  http://msdn.microsoft.com/en-us/library/ff394517.aspx Word Automation Services enables server-side conversion of Microsoft Word documents on SharePoint Server 2010. In this topic, you will learn how to create a solution that initiates a document conversion from the document context menu in SharePoint Server 2010. You will learn ...

SharePoint 2010 Hide a Menu Item in the ECB from SharePoint List Items

Saturday, April 9, 2011 0:56

You can add new custom actions to the Edit Control Block (ECB) menu by using the Features framework. However, you cannot use this method to do the reverse – to hide existing ECB menu items– because they are rendered by using the ECMAScript (JavaScript, JScript) file, ...

Delegate Control in SharePoint

Saturday, April 9, 2011 0:53

When starting to build MOSS sites, many developers will start the page template development process by analyzing the shipped master pages and/or using the 'How to create a minimal master page' MSDN article. Whilst very useful, for simplicity the example in the article unfortunately does not ...

SharePoint 2010 Delegate Control

Saturday, April 9, 2011 0:49

Microsoft SharePoint Foundation implements a straightforward mechanism to declare candidate controls for a particular functionality and provides a mechanism for choosing a single functionality provider. Through a Feature you can identify controls and control templates that serve as candidates for a chosen functionality. Controls are identified ...