RhinoBull, VBClassicRocks Thanks a lot people

VBClassicRocks, thanks for the info....Actually there is no events in this class

"'in the module
Option Explicit

Public myClass As Class1

'elsewhere in your code - perhaps main form load event
Set myClass = New Class1 '<<< do it only once when program starts"


What about declaring the class-module in a module like this:

Public myClass As New Class1
and when exiting program. (set myclass = nothing)

By doing so i can avoid "Set myClass = New Class1" every time when i am calling this class...

Is that ok?