
Howto create a public object module in visio?
Hi all,
I have a public user-defined type in a module:
Public Type MP_Stage
MP As String
Stage As String
End Type
I want to convert it to a Variant, which should be possible for custom types
(says the help). So I can store the types in an array.
I get the error: "Only user-defined types defined in public object modules
can be coerced to or from a variant or passed to late-bound functions."
So if this isn't, what is a public object module?
How to fix it, when I create my own class it's also not possible to store it
as a variant.
Thanks Mike