X
xargon
Hi everyone,
I have a global declaration part in my 'ThisDocument' module in Visio. I
have various Collection objects initialied like this:
Public m_CRSFiredSquibs As New Collection
Public m_CRSObjectDefinitions As New Collection
Public m_CRSObjectInstances As New Collection
Public m_CRSExpressions As New Collection
Public m_CRSConditionalInputTable As New Collection
Public m_CRSConditionalFunctions As New Collection
Public m_CRSVoidFunctions As New Collection
Public m_usedInputs As New Collection
Now I also have a Document_DocumentOpened event which does not work. Now,
if I comment out the first collection object (m_CRSFiredSquibs), the event
handler works fine. But if I have it in the code, it does not work!
Is there a limitation to the number of Collection objects that I can
use??? I just do not understand this!
Thanks!
xargon
I have a global declaration part in my 'ThisDocument' module in Visio. I
have various Collection objects initialied like this:
Public m_CRSFiredSquibs As New Collection
Public m_CRSObjectDefinitions As New Collection
Public m_CRSObjectInstances As New Collection
Public m_CRSExpressions As New Collection
Public m_CRSConditionalInputTable As New Collection
Public m_CRSConditionalFunctions As New Collection
Public m_CRSVoidFunctions As New Collection
Public m_usedInputs As New Collection
Now I also have a Document_DocumentOpened event which does not work. Now,
if I comment out the first collection object (m_CRSFiredSquibs), the event
handler works fine. But if I have it in the code, it does not work!
Is there a limitation to the number of Collection objects that I can
use??? I just do not understand this!
Thanks!
xargon