Menu Home

Sharepoint Site Provision order, Feature activation, List Instantiation

Grabbed from: http://blogs.msdn.com/b/mcsnoiwb/archive/2008/05/28/site-provisioning-order.aspx If you ever have gotten stumbled over your features not activating as expected or dependencies not working, that might have to do with site provisioning order. SharePoint provisions in the following order: 1.global onet.xml 2.SPSite scoped features defined in onet.xml, in the order they are defined in […]

Unable to deploy WSP due to installed feature

When a WSP package is deployed it installs all features of the package to the desired web-application, but beside that it also installs them to the web-application that hosts the central administration (CA). This can cause problems, if the feature isn’t uninstalled correctly from all web-apps including CA. The problem […]

Sharepoint links

http://www.hezser.de/blog/archive/2007/04/29/how-to-use-the-sharepoint-web-controls.aspx http://www.wisdom-soft.com/downloads/downloadfiles.htm http://www.brsreddy.com/2009/05/edit-dispform-editform-or-newform-in.html http://blog.thekid.me.uk/archive/2007/02/15/a-solution-to-quot-an-unexpected-error-has-occurred-quot-in-wss-v3.aspx http://weblogs.asp.net/bsimser/archive/2006/09/25/Enabling-anonymous-access-in-SharePoint-2007.aspx

Stock pages

This is just a short collection of useful links for stock trading. http://preview.bloomberg.com http://finance.yahoo.com http://reuters.com http://www.kurstarget.dk http://www.euroinvestor.dk

LinQ select in / contains

You have a large set of data and is only interested in a subset of it. But the subset is not easily defined, it could be a list of IDs or something similar what do you do? In SQL you could write a SELECT * FROM Items WHERE itemId IN […]

Shader programming inside the browser

OpenGL shader programming in your browser. One of the most talented guys from the demo scene, Inigo Quilez, decided that making awesome 4k demos wasnt challenging enough so he set out to make a shader programming environment for WebGL enabled browsers (Web-kit browsers, Firefox 3.7 and Chrome). To enable WebGL […]

SQL Select Distinct Column wise (with GUIDs)

I had some SQL trouble selecting  distinct values from a single column while also selecting the remaining columns from the table. After trying  without any real breakthrough I turn to stackoverflow and luckily Peter Lang was the man with an fast answer. The question was (http://stackoverflow.com/questions/2052158/ordered-sql-select-columnwise-distinct-but-return-of-all-columns) I have a little […]