What is a public object module in VBA?
问题 I'm trying to get as close to function pointers / abstract classes as I can in VBA. I have a class called VerificationManager and verifies a bunch of cells in a couple of spreadsheets match up. This will be done in different ways depending on the information and spreadsheets being used with it. I'd like to be able to make the code reusable by specifying a method to be called in a string using the Application.Run function. So I can rewrite the function that changes. Now if I was using Java or