I have a couple of projects in VBA which does stuff in Word.
The thing is, currently all the projects that I open are in the same window of VBE. I would like to open more than one window of VBE in a way that there would be one VBE window for each project I open.
The why I want to do that is because I want one project on my left monitor and another on my right monitor. This way I can see both of them at the same time.
Is there a way to do this ? (Google didn't provide me with an answer)
EDIT : Might I add that the projects I have are all .dotm
files (even though that is the only way I know to save those type of Word files which are containing VBA).
EDIT 2 : I am using Microsoft Office Professional Plus 2013. Basically Word 2013.
ANSWER : Cindy Meister's answer (see quote below or her comment) is working exactly as I needed.
Word needs special tricks to open a new instance - the installation default is to not allow it. One way is from the command line using the /n switch: filepath\winword.exe /n Another way is to use the New keyword in a macro:
Dim wdApp As Word.Application: Set wdApp = New Word.Application: wdApp.Visible = True