Week in Review Week in Review: February 18, 2023 Highlights include a video on the current state of Microsoft Access, closing open Access objects (reports, etc.), and using temp tables to boost performance.
Advanced VBA Performance Tip: How to Cache Results of Slow Processes Store expensive function call results with memoization. Learn to implement this technique with our step-by-step instructions and sample code.
Defensive Programming When Reliable Software Goes Bad Back in the 1980's, misplaced user trust in the software of a radiation therapy machine led to six deaths and several other serious injuries.
Subs vs. Functions Calling VBA Functions from the Form or Report Property Sheet There are two basic ways to handle events in Microsoft Access: via {Event Procedure] Event Handlers (i.e., Subs) and Function calls from the Property Sheet.
Code Library Calculating Federal Holidays in VBA: Juneteenth Update An update to my VBA FederalHolidays(), IsBusinessDay(), and WorkingDayCount() functions with support for the new Juneteenth holiday.
Subs vs. Functions Event Handlers in Microsoft Access VBA You need event handlers to write event-driven code. This tutorial will help new users get up to speed and may even teach seasoned pros a thing or two.
twinBASIC Weekly Update twinBASIC Update: February 12, 2023 Highlights include an improved UX for selecting one control from a group of controls, an update to the ActiveX Control project type, and some IID advice.
Week in Review Week in Review: February 11, 2023 Highlights include a video showing how to integrate charts.js in Access, calling the Windows Color Picker Dialog from VBA, and an Access CalendarMaker.
Subs vs. Functions How to Return Values from a Sub in VBA You can "return" values from a Sub via a parameter passed by reference. What does that look like and when should you use it? Let's explore.
Subs vs. Functions Every Function Has a Return Type Every Function in VBA has a return type even if you don't explicitly define one. In fact, there are *FOUR* different ways to declare function return types.
Subs vs. Functions Why Use Subs at All? Almost every Sub could be a Function...but that doesn't mean it's a good idea.
Subs vs. Functions Subs vs. Functions in VBA What is the difference between a Sub and a Function and why would you use one or the other? I'll give you the short answer...and then we can explore the long answer.
Intermediate Open the Windows Color Dialog from VBA If you need to get Access color values from your users, this is the easiest way to do it.
twinBASIC Weekly Update twinBASIC Update: February 5, 2023 Highlights include a major rewrite of the ActiveX implementation, updates to two community projects, and a discussion about the business side of twinBASIC.
Week in Review Week in Review: February 4, 2023 Highlights include a tool to localize Access applications (coming soon) and a couple of good (if slightly off-topic) articles on management and pricing.
VBA Enums in VBA: A Great 10-Minute Introductory Video Excel MVP Paul Kelly packs a bunch of great information (including a well-hidden feature) into this ten-minute video introducing Enums in VBA.
VBA Idempotence vs. Determinism Idempotent functions can safely be run multiple times. Deterministic functions always return the same output given the same inputs. Let's explore further.
Defensive Programming 3 Techniques for Programming Reversible Processes How would you recover from a large accidental UPDATE operation? You'd better be able to answer that question *before* it happens.
Intermediate 5 Types of Settings for Microsoft Access Applications How you store settings in Microsoft Access depends on their scope. Understanding the scope of your settings is critical to ensure you store them the right way.
Quick Tip Quick Tip: 4 Ways to Select the Bottom Control in a Stack There are many situations that call for two (or more) controls to be stacked on top of each other. In those situations, how does one select the bottom control?
twinBASIC Weekly Update twinBASIC Update: January 29, 2023 Highlights include an updated roadmap and v1 release date, new UserControl events support, and several new tB sample projects from fafalone and Ben Clothier.
Week in Review Weeks in Review: January 28, 2023 I'm back! Highlights from the past two weeks include using web APIs in Access, Rubberduck 3.0 news, using the registry from VBA, and more on ChatGPT.
Archive Archive Collection: Humor I'm on vacation (shh...don't tell anyone)! I'll be back soon, but until then enjoy today's curated collection of articles from the archive. Today's topic: Humor.
Archive Archive Collection: Form Design I'm on vacation (shh...don't tell anyone)! I'll be back soon, but until then enjoy today's curated collection of articles from the archive. Today's topic: Form Design.
Archive Archive Collection: Defensive Programming I'm on vacation! I'll be back soon, but until then enjoy today's curated collection of articles from the archive. Today's topic: Defensive Programming.