Simple Strategy Pattern Introduction
First, open Visual Studio and create a new project. Call this project “AccountingService”. Then, add a project called “AccountingProcessor” Next, add another project and call it “AccountServicesUnitTests” And finally one last project to contain your business objects called “AccountingCommon” With iteration one, we want to create a simple program to...
Read MoreDatabase Connection Through VBScript Classes Part 1
Are you tired of writing the code to connect to a database over and over again? I’ve grown very tired of it. I decided it was time to build a reusable class to hook up the connection and recordset objects I use in almost all of my projects. The concept I came to love is a VBScript class. Here is the code for the class. Class DataBaseFunctions ' Declare variables to have public...
Read More