Wednesday, October 31, 2012

Forms folder missing error

http://aarohblah.blogspot.com/2009/12/issues-and-solutions-in-sharepoint.html provides the simple fix for this error "Could not find a part of the path" that occurs when deploying a workflow feature.

Add <Property Key="RegisterForms" Value="*.xsn" /> to the Feature.xml

Tuesday, October 16, 2012

Sunday, October 14, 2012

Spline Keyframes

Tool here to calculate the first and second control points of Bezier curve used in a SplineDoubleKeyFrame

Saturday, October 6, 2012

MVC vs MVVM

Model-View-Controller works very well if you want to have a single model and multiple views of the data, which is something you often want with a list. However, there are also many scenarios where you may want to have multiple models of the same or related data. In that sort of scenario, you may want to consider the Model-View-ViewModel that has become so popular.
http://loosexaml.wordpress.com/model-view-controller-for-a-list/