Killing Disconnected Terminal Server Sessions from the Command Line
Terminal Services (or Remote Desktop if you prefer) is a good thing. It allows you to remotely connect to a server to manage it.
Terminal Services (or Remote Desktop if you prefer) is a good thing. It allows you to remotely connect to a server to manage it.
I have been asked for this little snippet of code by several users, so here it is. It does something that sounds really simple, but “classic” development languages from Microsoft don’t seem to have a built in function for it. Let’s say that you are righting some sort of application that requires certain fields to contain numbers only.… Read More »
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 »
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 »
Copying a file with VB6 is pretty straightforward. However, giving feedback to the user during the copy process has historically been a challenge.
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 »
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 »
Window borders are not something you usually think about. They’re just there, keeping a visual cue of the current workspace. Did you could change the width of these borders? Some folks want just like small borders.
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.
Working with network objects in Visual Basic can be a little daunting for newer programmers. It’s not that scary, really.