How to use Class Modules in Excel VBA, check out the video tutorial then the article for some extra depth. Get VBA Class Module Spreadsheet Here Also get updates when new blog or video tutorials are released. VBA Class Modules - Some Essential background Class modules are … [Read more...] about VBA Class Module Example – Better VBA With Objects
Object Oriented Programming
Object Oriented Programming Explained – High Level
Why do you need to understand object oriented programming ? If you don’t have a grasp of OOP, or at least a three thousand foot view of this subject. Then you will be at a disadvantage communicating with software developers.Also the projects that you write yourself will be less effective and more difficult to write than they need be. If you aim to write some code in any … [Read more...] about Object Oriented Programming Explained – High Level
How to code a vba form without using global variables
Global variables ruin applications Here is how to code a form without using those dreaded globals.This is especially useful for forms that must appear in the middle of a running process, and that need to collect information from the user and then pass the user's choice back to the calling code and continue running. … [Read more...] about How to code a vba form without using global variables