Skip to content

Blog

Blog Posts von Robin Güldenpfennig zu SharePoint, Softwareentwicklung und weiteren Themen.

Visual Studio ArgumentNullException Code Snippet

I assume that the ArgumentNullException is one of the exceptions that is implemented the most times in any code project.

So to save time I created a little code snippet for Visual Studio that dynamically inserts the typically ArgumentNullException implementation for any parameter. You just type the parameter name by using IntelliSense and the rest is magic 😉

Read More »Visual Studio ArgumentNullException Code Snippet

SharePoint 2016 Update

Here is the summary of an update on SharePoint 2016 as published by MSDN recently.

1. Timeline : SharePoint Server 2016 will become generally be available in Q2 2016, with a public beta planned for Q4 2015.

You can request access to the public Beta program here.

2. Microsoft Confirmed to deliver On-premises releases of SharePoint for the foreseeable future. Microsoft Confirmed they will Continue to have customers who choose a combination of on-premises, cloud and hybrid deployments for many years to come. (Putting all SharePoint is dead rumors to end).

3. In SharePoint 2016, MS is paying attention to trends in content management, team collaboration and user experiences across devices.

4. Microsoft with SharePoint 2016 will also focus on how Cloud can be blended into existing on-premises scenarios in new and compelling ways. In particular, MS is focused on delivering value to customers as part of their on-premises deployments, while at the same time making it easier to take advantage of cloud innovation thru hybrid deployments of SharePoint Server with Office 365.

5. SharePoint Server 2016 will deliver enhancements and new capabilities in three major areas

Read More »SharePoint 2016 Update

SharePoint

SharePoint ist eine Web-Anwendung der Firma Microsoft, die folgende Anwendungsgebiete abdeckt: ZUSAMMENARBEIT Beispielsweise das Verwalten von Projekten oder die Koordination von Aufgaben SOZIALE NETZWERKE Beispielsweise… Read More »SharePoint

SharePoint 2013: Calendar – Colorize Event Categories

In the standard implementation of the SharePoint calendar app it is not possible to visualize the event entries with a different background color depending on the category. To implement such a feature we have to do some customizing.

In the following steps we will modify the calendar with an additional column that holds auto-calculated informations. After that we will implement a JavaScript code block that contains the coloring logic.

Some events with different categories in the standard calendar implementation.
Some events with different categories in the standard calendar implementation.

Caution: The jQuery JavaScript library must be available in your environment.

Read More »SharePoint 2013: Calendar – Colorize Event Categories