Archive for the ‘.NET’ Category

Drag and Drop from a TreeView to a DataGridView

An application I was working on recently needed the ability for the user to drag a TreeView node onto a DataGridView, and when ‘dropped’ create a new row in the DataGridView. It is not difficult, but took me a while to put all the relevant pieces together, so I thought I’d post it in case [...]

Twitter oAuth from C#

A while back I was working on a ‘post to Twitter’ function that used the original Basic Authentication that the Twitter V1.0 API allowed. Unfortunately, at the end of Aug 2010 they discontinued support for this and forced everyone to use their oAuth authentication. There are a number of services around (such as SuperTweet) that [...]

CurrentCost Power Monitor Software – Take 2

This post is an update to my previous one about the CurrentCost Energy Monitor and the software I built for it. After posting brief details about it, I agreed with the guys over at the MSDN Coding for Fun site to write a full project article  for them. The suggested a couple of changes – [...]

CurrentCost Power Monitor Software

I recently bought a device to monitor our household energy consumption. After looking at a few I lumped for a CurrentCost Envi. this is a great little device that comes in two parts – a transmitter with jaws that wrap around the main power cable coming into your home and a desktop display unit. The [...]

WebApp KeepAlive Service

Recently I have been working with DotNetNuke. This is a superb open source CMS platform running on ASP.NET with a SQL back end, simple to install, easy to use and there is a thriving community around it. It is also available in a ‘Professional’ version which costs around £2000 per year and provides additional workflow [...]

TimeSnapper Plugin

Yesterday on Leon’s Blog, secretGeek, I noticed they had released v3.4 of TimeSnapper. One of the features that caught my eye was the ability to develop/add plugins to it. I love plugins, I’ve written plugins for Windows Live Writer, Outlook, dasBlog, and more.  Everything should have an SDK or plugin’able architecture. I championed it at [...]

On becoming the Geo Guy

Apparently I am rapidly becoming ‘Geo Guy’. I seem to be adding Geo / Gps support and plug-ins to everything I use… I just finished adding ‘Insert GPS Link’ support to PockeTwit (a great little Windows Mobile twitter client – really, go and get a copy now…) Previously I added GeoRSS support to dasBlog for [...]

Subclassing Windows in C#

  I’ve been toying around with creating an Outlook addin recently that adds a new panel to the main Outlook inspector window. Actually it is going to be a ‘folding’ or ‘collapsing’ windows similar to the docked ToolWindows in Visual Studio. Anyway, the stuff around getting the correct window handle for the Outlook inspector window [...]

SMS Gateway follow up

I’ve had a lot of interest in my SMS Gateway app since this post. SMS gateway consist of two components : SMS Gateway AddinThis is an Outlook addin that adds a new toolbar to your Outlook instance. The toolbar allow the user to choose a mobile / cellphone number (from their contacts) and enter a [...]

Sending an SMS Message from Windows Mobile 6

Programmatically sending an SMS message from your Windows Mobile is fairly simple these days. You’ll need the WM6 SDK. Start a new Visual Studio ‘Smart Device Project’, add a reference to Microsoft.Windows.PocketOutlook, then use the following code…using Microsoft.WindowsMobile.PocketOutlook;..and..public void Send(string to, string msg) { if ((to != string.Empty) && (msg != string.Empty)) { SmsMessage message [...]

Subscribe to RSS Feed Follow me on Twitter!