Search notes:

VBA: UserForms

UserForms is a global intrinsic variable that is provided by VBA. This variable is a collection that contains all loaded MSForms.UserForm objects of an application.
UserForms is technically a property of the global object. Its data type is object.
debug.print (typename(vba.global.userForms))
debug.print (typename(vba.userForms))
debug.print (typename(userForms))

TODO

Is userForms somehow related with the userForm object found in the forms library?

See also

The VBA statements load and unload.

Index