Tuesday, July 27, 2010

Easy Way How to Find SharePoint Subsite Size

http://bobklass.blogspot.com/2009/01/easy-way-how-to-find-sharepoint-subsite.html

Thursday, July 22, 2010

Adding Javascript to save button in edit form Sharepoint

http://sarveshspn.blogspot.com/2010/03/adding-javascript-to-save-button-in.html

Wednesday, July 21, 2010

Workflow Videos

http://www.youtube.com/watch?v=EMDzqsoUW3k

Implementing Multiple Documents Approval Workflow in SharePoint 2007

http://rajeshagadi.blogspot.com/2010/04/implementing-multiple-documents.html

Monday, July 12, 2010

Sharepoint Workflow Programming (User Profile)

http://www.sharepointdev.net/sharepoint--development-programming/get-user-profile-using-display-name-in-sharepoint-51923.shtml
http://msdn.microsoft.com/en-us/library/microsoft.office.server.servercontext.aspx
http://karinebosch.wordpress.com/sharepoint-controls/peopleeditor-control/
http://simplesharepointsolutions.blogspot.com/2009/06/how-to-populate-custom-contact-list.html

Providing the fact that your user column only accepts users (not groups) and only a single value :

using (SPSite Site = new SPSite("yoursite"))
{
using (SPWeb Web = Site.OpenWeb())
{
SPListItem Itm = Web.Lists["TheList"].GetItemById(1);
SPFieldUserValue UserValue = new SPFieldUserValue(Web,Itm["UserCol"].ToString());
Console.WriteLine(string.Format("Email : {0}\r\nLogin :{1}",
UserValue.User.Email,
UserValue.User.LoginName));

}
}

Monday, July 5, 2010

sharepoint search dbo.membership_updateRecursiveMemberships

http://nitman.com/2009/11/26/office-server-search-event-id-10036/

http://darrylclark.blogspot.com/2010/01/event-id-10036-divide-by-zero-error.html