-
Archives
- May 2010
- April 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- December 2007
- July 2007
- June 2007
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- October 2004
- August 2004
- July 2004
- June 2004
- December 1969
-
Meta
Author Archives: historical
Google Custom Searches.
Google have just launched the Google Co-op Custom Search Engine into the wild. I’ve just knocked up a small example of a possible application – just search for C# related information. Minimal testing so far suggests that it might be … Continue reading
Posted in General
Comments Off
Nintendo Web Browser on the DS Lite
I recently bought a Nintendo DS Lite to keep me occupied in one of the many hotels I have to stay in. I was swayed toward the DS by the promise of the Nintendo Browser, and now that my new … Continue reading
Posted in General
Comments Off
SongBird media player / browser
This seem slike a really cool idea – a media play (looks vaguely familiar) with browser support, and remote mp3 playback. I’ve just downloaded it for a look-see, and I’ll let you know how it goes.
Apostrophe In RowFilter
According to ASP.NET Resources, there is a problem when using apostrophes in a RowFilter expression in a DataView. The fix seems to be to double the apostrophes (“O”Mally”) rather than escaping them (“O\’Mally”)
Posted in C# Snippets
Comments Off
LiveWriter Bug
There’s a small bug in the LiveWriter preferences pages. On the “plugins” tab, the user can enable / disable plugins using a couple of radio buttons. Unfortunately, it appears that there is flawed logic to read the current setting of a … Continue reading
Posted in General
Comments Off
Iterate through enum values
A quick example of how to iterate through the values in an enum… enum myEnum { one, two, three, four, five, }; foreach (int i in Enum.GetValues(typeof(myEnum ))) { myEnum myItem = (myEnum )Enum.ToObject(typeof(myEnum ), i); System.Diagnostics.Debug.WriteLine(myItem.ToString()); }
Posted in .NET, C# Snippets, General, Software
Comments Off
An update to the EmbedVideo Plugin
A minor modification, but I have added a “Preview” button to the chooser form. It should make it easier for you to double check that the video you specified is the one you want. This button will open up a … Continue reading
Posted in General
10 Comments
A List of LiveWriter Plugins
As well as my own humble effort, there are quite a few others out there writing LiveWriter plugins. A good place to start looking would be here or here.
Posted in .NET, General, LiveWriter Plugins
Comments Off