Xblog.org

>> Home


Locations of visitors to this page

21 August 2008

The Pirate's Dilemma

With everything in the press about illegal downloads, selling secondhand games, and overzealous copy protection.

I thought I'd share this with anyone who cares...
posted by Dave Henry at   1 Comments   Links to this post

10 August 2008

Power tools and how to hurt yourself.

That's right I have been doing man things today, Wife told me a few weeks back that if I didn't sort out the shelves in the hall cupboard that I would feel her wrath, it was quite nice, so today she asked if I would sort out the shelves once and for all...

I had a brief thought that I should put my boots on before starting, I didn't, anyway I was well into putting up the supports in the fore mentioned cupboard when I realized I had not picked up the bag of screws. So I put down the power drill and walked out into the hallway towards the stairs and turned the air blue as I kicked the door frame with my left foot not mind you with any of the major toes O no with my little toe the smallest toe in existence and I KICKED the door frame with it.

In a grump I was halfway up the stairs to go get my Boots when Wife finally shows some concern and says she had better check it before I cover it up, to my relief I had actually damaged it. I've taken the skin clean of the top/front of my toe, don't ask, I don't know either.

Only thing is I made myself look like a total girly wuss because I have the most ticklish feet in the world and everytime Wife touched them to try and mop up some of the blood, I kept squealing, the pain was the normal I just stubbed my toe pain but she almost got my foot in her mouth every time she touched my foot.

I love Wife very much. she puts up with alot, like when I'm being Mr Poopyhead. She does not deserve a kick in the head for trying to help.

later she let me use the nailgun to fix bits of wood together :-D

Labels: ,

posted by Dave Henry at   0 Comments   Links to this post

17 July 2008

I'm still alive, even if I don't feel like it...

Well I have plague(read cold) again and as such have taken the day off work, then I found an email from Pyro pointing out that it'll be a month since my last update. So I'm typing this wrapped in a blanket, sweating and surrounded by soggy tissues just so you get a nice mental image.

In the last month I have been working at my new job in Bristol and the commute time is rather long. I'm out of the house by 6:40am and home by 7:45pm and asleep by 10:00pm to be up again at 6:00am. A small side effect of this is that I don't get to work on my projects until the weekend where I have to fit them in around spending time with family.

I have managed to get a fair bit of the MapEd program done and sorted out a couple of things I didn't understand about C#, like I can now data-bind arrays of custom classes to windows form controls like TextBoxes and I'm getting better at writing my own custom Controls.

Over on the sidebar menu you notice I've changed the "Dodge" and "Bert Higgins:Redux" links to a "Projects" link under here you'll find the old pages and a new one for MapEd.

When I stop hacking my lungs up I'll try and do more regular posts.

Labels: , ,

posted by Dave Henry at   1 Comments   Links to this post

18 June 2008

A WinForms missing method

I'm sure I can't be the only person to need this so here is a function I couldn't find :-

private Control FindControl(string strControlName)
{
    if (String.IsNullOrEmpty(strControlName) || this.Controls.Find(strControlName, true).Length == 0)
        return null;

    return this.Controls.Find(strControlName, true)[0];
}

Usage :-

for (int p = 0; p < CurrentMap.Depth_Tiles; p++)
{
    string strOutput = String.Format("CheckBox Controle cbShowLayer{0} - ", p);

    if (((CheckBox)FindControl("cbShowLayer" + p.ToString())).Checked == true)
        MessageBox.Show(strOutput + "checked");
    else
        MessageBox.Show(strOutput + "not checked");
}

If anyone has a better solution let me know :-)

Labels: ,

posted by Dave Henry at   0 Comments   Links to this post
NEW JOB!

After only 5weeks of looking I've managed to get a job yay me!

I'll be working in Bristol city center, so train or car both will be expensive. It's working for a company called Innogistic Software Plc, apparently I'll be working on something to do with distribution of Fire fighting hardware?? It pays better than the last place which it has to because of the distance I'll be traveling, and it's a six month contract but then again so was Source and I stayed there for 18 months.

so once again...

YAY ME!!!

Labels:

posted by Dave Henry at   0 Comments   Links to this post