Magiel Bezuidenhout

Wordpress

WordPress Development

Are you interested in creating your own online identity? WordPress provides the latest web content publishing platform. For more information, click here.

MS Developement

Custom Microsoft Solutions

If you are looking for a specialized MS developer, you have come to the right place. Click here to view my portfolio page.

Latest Technical Articles

  1. Enable My Movies on Xbox 360 Extender

    Posted by
    / / Leave a comment
    I recently purchased an Xbox 360 to use as an Media Center 7 Extender. The setup was straight forward and everything was working within a matter of minutes, but then I hit a major obstacle – MyMovies. My Movies require authentication through the MCE7 box. I received an error on...
  2. DSTV Mobile Walka Mini TV

    Posted by
    / / 2 Comments
        With two new channels (MNET Mobile and Discovery Channel) DSTV Mobile is definitely moving forward. As with all new gadgets, the first thing I will do the 1st of Dec is purchasing the Walka device.
  3. Facebook’s new Timeline Feature

    Posted by
    / / Leave a comment
    Facebook has introduced the new Timeline feature at the f8 conference. This feature organizes all your Facebook activities and turns it in a story of your personal life. This is probably the most noticeable update from Facebook in the past few years. Facebook plans to roll out the feature within...
  4. ProcessCmdKey – Processing WinForm key press events

    Posted by
    / / Leave a comment
    The easiest way to process Key Press events on a winform is to override the ProcessCmdKey event.   protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {     if (keyData == Keys.Escape) this.Close();     if (keyData == (Keys.Control | Keys.S))     {          SaveData();     }     return base.ProcessCmdKey(ref msg, keyData); }