When you install Office Web Apps to your environment, it becomes highly integrated with your SharePoint. You have to be obey some important rules if you want to uninstall one of these coupled components, Office Web Apps and SharePoint. After you unistalled Office Web Apps from the Control Panel, you […]
I’ve never used keyboard shortcut combinations in SharePoint 2010. But today in a usability discussion I wondered which keyboard shortcuts are available in SharePoint and I decided to list those I can find. Using these hot keys can be very effective. Home Link Alt + 1 -> ENTER Skip to […]
Microsoft has released a technical review SDK for SharePoint 15 (or SharePoint 2013). This preliminary SDK is called as SharePoint 15 Technical Preview Managed Object Model Software Development Kit. You can download and dig into new SDK before next version of SharePoint released. Regarding to the release date of Office 15 […]
You implement your web part, build and deploy it to your SharePoint server. However your web part page can give errors due to a bug in your code or some other problem. Unfortunately in most cases web part page can not be opened in edit mode. There are many scenarios that causes this kind of […]
This blog demonstrates creating a list instance from custom list definition and deploy some inital data with the list instance. In my previous blog I explained how to create custom list definition with custom content type and gave an abbreviation list example (Custom List Definition in SharePoint 2010). In this blog I’ll continue with that example. […]
In this blog I’ll explain how to create a custom list definition in SharePoint 2010 that contains the following parts; creation of custom fields and a content type for the list creation of list definition creation of a list instance I’ll demonstrate a list definition for an abbreviation list which will have two […]
This blog contains the procedures to install Microsoft Office Web Apps on your SharePoint 2010 server farms. You must have admin privileges on your computer to install Office Web Apps. Office Web Apps are the online companions to Microsoft Word, Microsoft Excel, Microsoft PowerPoint, and Microsoft OneNote applications. Office Web […]
You can modify content menu of list items in SharePoint 2010. List items’ context menu is called as Edit Control Block (ECB). Create a “SharePoint Project” in Visual Studio 2010 (farm solution) Add new “Feature”. Set the scope of “Feature” according to your needs. Add new “Empty Element” to your […]
For some time we’ve been looking for the best development environment for SharePoint 2010. Different than other earlier SharePoint versions, SP2010 can be installed on Windows 7 or Windows Visto for development purposes. Other alternative for development is using virtual machines. I think virtual machine option has still more advantages. […]
SharePoint object model allows to access recycle bins of web sites or site collections by calling RecycleBin property of the SPWeb or SPSite classes respectively. [crayon lang=”c#”] SPRecycleBinItemCollection recycleBinItemcollection = yourSite.RecycleBin; //or SPRecycleBinItemCollection recycleBinItemcollection = yourWeb.RecycleBin; [/crayon] RecycleBin property will return recycle bin items as SPRecycleBinItemCollection. Items of this collection […]