by Jonathan Halder | Nov 6, 2024 | Blogging, MS Access, MS Access Forms, MS Access VBA Coding
My Access adventure today was helping work on a problem for a customer where they were getting errors on a form that was bound, and when opened automatically starts writing a default date and time to a record. The code checks to see if this record becomes valid as the...
by Jonathan Halder | Nov 5, 2024 | MS Access, MS Access VBA Coding, TDD
I had a problem with my Access program where I had separated the database from the business logic in order to test the business logic. My tests ran successfully on the business logic, but I had introduced an error on the db side creating the data in a live environment...
by Jonathan Halder | Nov 1, 2024 | Blogging, MS Access, MS Access VBA Coding
I gave copilot this prompt: Rewrite this VBA function using Uncle Bob’s SOLID principles:Function time_() ‘****************** Dim v_a As Integer Dim v_b As Integer Dim v_c As Integer ‘- – – – – – – – –...