Category Archive: .Net Framework

May 20

SharePoint 2010 – Class to Hold ListItem Information

In order to avoid excessive memory leaks when coding for SharePoint 2010 I have used the following class:- // Class to hold SPListItem information public class SPListItemInfo { public string WebUrl { get; set; } public Guid ListGuid { get; set; } public int ItemId { get; set; } public SPListItemInfo(SPListItem _item) { this.WebUrl = …

Continue reading »

Jul 13

CodeRush XPress Menu Item Missing

Developing on Visual Studio 2010 on Windows Server 2008 R2. I downloaded and installed CodeRush XPress 11.2 and found the DevExpress menu missing. The final post in the following forum lead me down the right path. http://community.devexpress.com/forums/p/28346/28346.aspx “This is actually an issue with the express version of CodeRush DevExpress where Microsoft requested the menu to …

Continue reading »