N
Nevo
I'm having a heck of a time trying to figure this out. When I run the
DumpAllDocuments macro, I get a type mismatch error calling DumpDocument.
I have no idea why this is happening. Can anyone help?
DumpAllDocuments macro, I get a type mismatch error calling DumpDocument.
I have no idea why this is happening. Can anyone help?
Code:
Public Sub DumpAllDocuments()
IndentLevel = 0
Dim vsDoc As Visio.Document
For Each vsDoc In Visio.Documents
DumpDocument (vsDoc)
Next
End Sub
Private Sub DumpDocument(iDoc As Visio.Document)
...
End Sub