Welcome to Geekdojo Sign in | Join | Help

January 2004 - Posts

Help required - Writing new Blog Post

Can someone teach me how to write blog 'offline' and format it properly and then copy paste it into the .Text editor without breaking the RSS feed system. It seems I have done it again. I think my last post about ItemCheck event and the previous one
posted by richardhsu | 2 Comments
Filed Under:

ItemCheck event of Windows.Forms.CheckedListBox is a BEFORE event, not AFTER

Today I learnt a few things about the Windows.Forms.CheckedListBox, it happened that I was trying to get a comma separated string of the text of all the items that are checked in the CheckedListBox control. e.g. "Apple, Orange, Mango" Now this is not
posted by richardhsu | 2 Comments
Filed Under:

My little Reverse Iterator in C#

Sometime back, I needed to reverse iterate over a collection and realised that .NET framework didn't provide any 'Reverse' IEnumerable for collections, I remember Standard C++ Library having reverse iterators for the containers. I finally managed to sit
posted by richardhsu | 3 Comments
Filed Under: