WIthin an Excel Addin I have a Class that performs some file IO. The actions and locations for the IO performed are determined by input from the user via a UserForm. What is the best way to handle gathering the input from the UserForm to be used by the Class object?
I have tried within the class to create a new instance of the form
Dim frm as frmUserForm
Set frm = New frmUserForm
The problem is that this new instance of the form does not have the same methods and properties as the form I created within the VBE. Ther is no Show property or method so I have been unable to get the new instance of the form to appear.
Thanks