Blog Stats
  • Posts - 132
  • Articles - 0
  • Comments - 28
  • Trackbacks - 0

 

February 2010 Entries

Come Here Me Speak – 11th March

I’m doing a talk on Mobile application development Covering Windows Mobile,iPhone and Blackberry development. Its been organised by Anglia Business Solutions and the Cambridge Network. For Information. http://www.cambridgenetwork...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Quick Ordinals

Need a quick .Net function to add ordinals to numbers? Don’t know what an ordinal is (I didn’t). Its numbers written like 1st 2nd 3rd etc. Anyway here’s the function - private string placelabel(int num) { switch (num % 100) { case 11: case 12: case 13: return num.ToString() + "th"; } switch (num % 10) { case 1: return num.ToString() + "st"; case 2: return num.ToString() + "nd"; case 3: return num.ToString() + "rd"; default: return num.ToString() + "th"; } }...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Compact Framework Speed Up Compile Time

This just really helped me out, I was wasting lots of time waiting for Visual Studio to compile my Compact Framework 3.5 apps. I followed this, and got some of my day back… http://www.ceveni.com/2010/
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

RIA Action

RIA has to be the most unfortunate acronym I’ve come across in recent times. It stands for Rich-Internet-Application. I’m grossly simplifying things, but what it does is automatically build all the proxy objects that lets SilverLight Applications talk to databases, without writing much code. Great introduction video here. http://silverlight.net/lear...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

 

 

Copyright © Richard Jones