Word is an SDI application - the default, and underlying architecture, is to
present a *S*ingle *D*ocument in the *I*nterface. It mimics an MDI if asked.
(By contrast, Excel is an MDI application that mimics SDI).
Independently, and regardless, Word is a multiple use application and you
can have many instances running concurrently and they will not interfere
with each other, except insofar as they use the same files - there is only
one normal template, for example. Again by contrast, Outlook is a single use
application and any attempts to create a second instance will connect to an
existing running one instead of creating a new one.
--
Enjoy,
Tony
"Gilligan" <Gill...@nospam.nospam> wrote in message
news:4C65C39E-A5FA-43B7...@microsoft.com...
Could you give me a link to help understand then how the application menus
are controlled. I started an instance of the Word 2003 application and
change the menu bar and the title. Then I started word and the same change
were made the the application. How do I control the applications that are
being selected selected for the desktop vs the Word applications that is
started in a C# application.
Thank you again for your help.
When you make a change to a menu, say, it is stored in whatever container
you tell Word - by default, usually, normal.dot - in memory. That change
doesn't exist anywhere else until the container is written to disk,
explicitly by you or possibly implicitly at application end. It will not be
picked up by another instance of the application unless it has been saved.
So ...
I'm not absolutely certain from your description what action you are taking,
but it sounds like the second invocation is not creating a second instance.
if I understand you, you are starting Word via automation - and then making
it visible? - and making some changes - and then "starting" Word manually
through Windows. If that is so, Windows will attach to the running instance.
If you are doing something else, please describe it in more detail.
--
Enjoy,
Tony
"Gilligan" <Gill...@nospam.nospam> wrote in message
news:5EE66AC2-E2AB-4E1F...@microsoft.com...