Hey guys,

Is there a way to create a *.dot and then use a Sub routine from another *.dot that is already opened?

Example
Document1.dot has a module modOpenDialog with a sub
Sub DialogOpen ()
frmMain.show
End

In a new document (document2.dot) I want to call the routine above from the document add new like:
Private Sub Document_New()
document1.modOpenDialg.DialogOpen
End Sub

Is this possible and if yes, how can I do this?

Thanks a lot