Living with the Surface

About one month ago, I became the proud owner of a Microsoft Surface RT. So far, I’m loving it. This seems to be contrary to the thoughts of the majority of folks in IT, but hey, I’ve always been a bit different. Having got rid of my iPad some time ago, I’ve been lugging around my Dell 6410… Read More »

Three Windows Command Prompt Replacements

I’ve been using the trusty command prompt in Windows, well, forever. Having started my life in IT as a DOS keyboard jockey, it’s been a part of my life that just won’t go away. Lately though, I’ve been looking to teach my command prompt some new tricks. Things like multi-tab interface, easier copy/paste within the window, things of… Read More »

Your Favorite Documentation Tool?

In my current position, it is necessary to write large amounts of technical documentation. For this, I use a variety of tools to create a “master” document, which then gets uploaded to either a SharePoint repository, or to our Wiki.

Get Available Drivespace with VB6

As a developer, from time to time you are called upon to build or process large chunks of data. During this process, you can use the the local hard drive as a temporary holding area. Admittedly, with todays well-specc’d computers, you shouldn’t need to do this, but back in the day, this was the norm. By request, here… Read More »

Compare Two Files in VB6

This function will allow you to compare one file to another. It will do either a lax check (compare file lengths only) or a stringent check (a byte by byte comparison). Pretty straightforward demonstration of string handling for Visual Basic 6, posted by request. Public Function AreTheyTheSame(ByVal File1 As String, _ByVal File2 As String, Optional StringentCheck As _Boolean… Read More »

MMS 2013 Dates Announced

What happens in Vegas stays in Vegas, right? It seems like MMS 2012 just wrapped up last week, but it was actually over six months ago.  Brad Anderson announced on his blog this week the dates of MMS 2013, and a change of venue over what was announced at MMS 2012.

PortInUse

Working with network objects in Visual Basic can be a little daunting for newer programmers. It’s not that scary, really.