I've created a VBA Class module and written all the necessary code within it. When I go to use it, in Excel, I instantiate it in a global module as follows.
Public gblFrequencyList As New clsLists
Then, in the Workbook module, I try to use it as follows.
Private Sub Workbook_Open()
...snip...
gblFrequencyList.fromString "Once,Interval,Weekly,Monthly,Yearly"
End Sub
However, this returns the following error message when I open the workbook.
Type mismatch.
In Debug mode, when I place a Watch on the object, I get this:
Object variable or With block variable not set
Why? I know that Excel recognizes my Class module because I get this prompt when typing a new statement.
Is there something different I need to do to get a global instantiation of my Class?

