Monday 19 December 2011

Full Text Stop Lists in VS 2008 GDR (Data dude)

Our dba asked me today how and where to add a stop list definition file to our database project. Turned out the quickest way to figure out where to add these is by using the schema view, under the Storage node as follows...

image

Tuesday 13 December 2011

Greyed-out object browser properties

Today I came across something a little odd in the .NET object browser control. I was seeing properties of the System.Windows.Forms.BindingSource class, that were greyed out in one Visual Studio 2008 object browser, but not showing in another. Turned out it was down to the Show Hidden Types and Members setting being different between the two Visual Studio 2008 IDEs.

This meant that in one Visual Studio I could see the SortDescriptions property, but in another I could not.

image

Thursday 8 December 2011

MVC tutorials

A good set of MVC tutorials up here by pluralsight

http://www.asp.net/mvc/pluralsight

Also, during the JavaScript and Ajax demo, the lecturer points out this excellent link for speeding up your web sites

http://developer.yahoo.com/performance/rules.html

image

You can also then use this add on in Firefox to run those rules and evaluate your site

https://addons.mozilla.org/en-US/firefox/addon/yslow/

For JQuery samples and demos have a look at this link

http://jqueryui.com/

How to find the last interactive logons in Windows using PowerShell

Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...