Hi,

I just need some clarificaitonon the time when the initialize event is called.

If I have a

Public Function OpenMyObject(byval strArg as string) as MyObject

and I also use the Initialize Event.

My question is this:

If the application using the Object does the following:

Dim objNew as New MyObject

the Initialize event is called.

If the application using the Object does the following:

Dim ObjReOpen as MyObject

Set ObjReOpen = OpenMyObject (strVariable)

does the initialize event get called and the function OpenMyObject or is it just the function OpenMyObject?

Thanks.

Needaname16