Feeds:
Posts
Comments

Archive for April, 2006

Widescreen TV

I was fortunate enough to take stock of a used Mitsubishi 1080i widescreen 46″ TV, from a friend of mine leaving town this week – it looks great sitting in my front room.  I’m somewhat of a novice when it comes to high end TV, and acronyms like HDTV, DVI, HDCP mean very little to [...]

Read Full Post »

I’ve been pulling out my hair for the last 30 minutes trying to get an HTML table with height 100% to work in my ASP.NET 2.0 application.  I’m trying to render a block of HTML in the center of my application page. I finally found the solution to my problem – it seems that turning [...]

Read Full Post »

Useful to know – to select items in a ListBox with a right mouse click wire up the following code to the MouseDown event: private void LB_MouseDown(object sender, MouseEventArgs e) { // Select item if right click. if (MouseButtons.Right == e.Button) { Point pt = new Point(e.X, e.Y); LB.SelectedIndex = LB.IndexFromPoint(pt); } }

Read Full Post »

Anyone who has ever installed Exchange Server 2000 on a Windows 2000 Domain Controller will tell you that it can be a real pain in the rump when something goes wrong.  You see, the SMTP service, Exchange services, DNS service and active directory services are all intertwined like grandma’s spaghetti on your dinner plate (sans [...]

Read Full Post »

Follow

Get every new post delivered to your Inbox.