Hieu - hieu.co.uk
General Information:
Latest News:
Access Windows special directories (My document, Desktop, Program Files) 13 Oct 2009 | 10:25 am
You can easily access to special directories of windows in C# by using: Environment.SpecialFolder.MyDocuments; The same go with other directories Environment.SpecialFolder.Desktop; Environment.Special...
My room 7 Oct 2009 | 07:35 am
After my verrrrry long holiday, it’s time for me to start working and posting again. I decide to start my come back with a design post. It’s my room in 3D. I made it right before I went on my holiday ...
I’m on holiday 13 Aug 2009 | 06:59 am
I’m currently on a long vacation. Unfortunately, I can’t get internet at my house so I couldn’t check mail regularly. I received a lot of email + comments about my websites. I will to reply ASAP but p...
A shorter way for If statement in C# 17 Jul 2009 | 08:33 pm
Instead of writing: if (idx == 1) { result = "Yes"; } else { result = "No"; } return result; You could wrap it in one single line code return ((idx == 1) ? "Yes" : "No");
Customize HTML control with jQuery (Checkbox + Radio) 9 Jul 2009 | 07:45 pm
In web development/design, there’re a lot of time you want to customize HTML controls. Some controls are actually quite simple to implement. I will show you how to customize a checkbox/radiobox. It wi...
The bridge and the bear . . . 18 Jun 2009 | 08:41 pm
The old bear made a wrong move and found he was hanging by his nails. Somehow he was able to pull himself up onto the ledge, where he saw he was in a very bad, in fact impossible, situation. So what d...
Developers’ survivor kits 10 Jun 2009 | 10:17 am
There are few things that I think I can never survive without as a developer. Surely you will need all the technical stuffs for your work. However a lot of things seem not relate to IT at all but so e...
The guide to basic Git for absolutely beginer 28 May 2009 | 11:10 am
In my company, we use SVN as our revision system, so I have to use SVN at work everyday. It’s good at a certain level however there are also a lot of limit behind its structure. So I decide to move to...
Delete query using Subsonic 15 May 2009 | 02:30 am
Here’s a quick little bit of code that shows how to delete records in your database using SubSonic’s Query Tool. I know you can write this is fewer lines of code, but I think this shows a little more ...
Getting start with Adobe Air as Web developer/ designer 11 May 2009 | 11:15 pm
The 3 screencasts of how to start making Adobe Air Applications as Web developers/designers. It starts from very basic set up the IDE, Hello worlds app, then how to make your pre-made jquery/javascrip...