by Jonathan Halder | Jun 11, 2024 | MS Access, MS Access VBA Coding
Here is another entry on the VBA RubberDuck Refactoring menu: What exactly does this mean? Initially, I was thinking the scope was a function in a module, and it would move a function closer to a function call made. I was just DEAD WRONG! It’s actually something...
by Jonathan Halder | Jun 10, 2024 | Blogging
I’ll be honest, I don’t particularly like hourly billing. This list will likely show you why. Description: Hourly billing (Rate * Hours): This seems to be the favorite of the industry. It is based on an hourly rate and the concept that time is money. It...
by Jonathan Halder | Jun 7, 2024 | Blogging
A while back I was searching for an alternative to hourly billing (all I knew was there was either hourly billing or fixed cost billing). I wanted to see what others were doing out there. This led me to Jonathan Stark’s Hourly Billing Is Nuts series of articles...
by Jonathan Halder | Jun 6, 2024 | MS Access, MS Access VBA Coding
Using some sample code I was playing with in my last Refactoring article, we will see what RubberDuck does when reordering parameters. Here’s the code: HAL_BasicEncryption Option Compare Database Option Explicit Implements IHAL_Encryption Private Function...
by Jonathan Halder | Jun 5, 2024 | MS Access, MS Access Features, MS Access VBA Coding
I wrote a script to deploy my Microsoft Access application which utilizes my company’s Access JumpStart framework which is available for purchase from our store. In the previous parts I’ve explained how I’ve done the first 6 steps of my script: Step 1 – Update the...