Mark's Stuff

My Foray Into Weblogging. Using this to store interesting items for later review.

Tuesday, May 16, 2006

.Net code regions to organize procedures

Forms
#region Controls, Constructors, Destructors, other common form code

#endregion
#region Class level application variables
#endregion
#region Properties
#endregion
#region Events
#endregion
#region Methods
#endregion

Class Library, WebService
#region Constructors, Destructors, other generated code

#endregion
#region Class level application variables
#endregion
#region Properties
#endregion
#region Methods - Public
#endregion
#region Methods - Private
#endregion

Thursday, May 11, 2006

Bootfx Application Framework

Something to check out (when I have time). Promises to be a app startup framework to get most of the menial stuff out the way when starting a new application.
http://www.mbrit.com/mbrit/content/bootfxdev.aspx


Friday, May 05, 2006

microsoft sharepoint server tutorials: sharepoint 2003: synchronizing a sharepoint "events" list with an exchange calendar (sample code)