I have a class module that I need to be global to the entire project.
The only way to declare it that I know of is in a standard Module.
And standard modules don't allow "Friend".
I could try having every single module/class/form that needs it create their own private instance and set them all equal to the same instance.
Is there a simpler way that I'm missing?
The only way to declare it that I know of is in a standard Module.
And standard modules don't allow "Friend".
I could try having every single module/class/form that needs it create their own private instance and set them all equal to the same instance.
Is there a simpler way that I'm missing?