Posts

Showing posts from August, 2008

Sharepoint Calendar reminder service

I have been tinkering with SharePoint for quite some time now. but only as a secondary system/tool to do some out of the box functionality which was just cheaper to do, rather then writing our own bit of functionality. So I am no Sharepoint expert, by any stretch of the imagination. After finding the calendar list, I thought wow. I'm going to set this up at home and have all my event emailed to me so I don't forget. Was this too much to ask?? Apparently so. Shaerpoint has a facility to alert me when a new event is entered, so I know that it knows how to email, but why does it not email alert reminders when the event actually happens? This to me, seems like logical out of the box functionality. So why is it not there? I had a look on google for a solution, but found the only option out there was for paid add-in. As with all other sharepoint add-in's, none of them are free. I wonder why sharepoint doesn't have a good open source community? could it be that sharepoint is s...

Configuration settings

I am currently working on a project for LL and a good developer I know ( John Liu ) wrote a little piece of code which took a configuration section from the config file and transformed it into a class, with very little code. Amazing!!! I'm referring to the .Net 2.0 configuration class. this little beauty lets you add a custom configuration section to your config and with a few def attributes, lets you wire up the config settings to properties within a class. I started trying to understand how this works, and found it was very difficult to find the information I was looking for on the net. So I decided to write my own point of reference, so that I dont forget it. (Just because it is so cool) First off, let have a look at the key points to making this work. The Config file Notice the config section which needs a name and the assembly name of the class which will be parsing this config file in this case Notfication and Sharepoint.Notifier.Config.NotificationCollection, Sharepoint.Noti...