Can this be done? I've got some VBA scripts to run on about 800+ MIF files,
and I want to run the simple ones in one instance, and the complex one in
another instance (it has to be babied).

Re: Running two instances of Word at the same time by Jezebel

Jezebel
Fri Sep 23 17:33:34 CDT 2005

Yes it can be done. Use CreateObject() or set x = new Word.Application


"ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
news:6EAB16D3-7B19-47BE-B64F-1982ACE13A8D@microsoft.com...
> Can this be done? I've got some VBA scripts to run on about 800+ MIF
> files,
> and I want to run the simple ones in one instance, and the complex one in
> another instance (it has to be babied).



Re: Running two instances of Word at the same time by ConvexTech

ConvexTech
Sun Sep 25 23:17:07 CDT 2005

I guess I should have been more specific. I don't want to call a second word
app from a script; rather, I want to *start* the script from within the
second instance so that I can monitor it (i.e., step through the routine).

"Jezebel" wrote:

> Yes it can be done. Use CreateObject() or set x = new Word.Application
>
>
> "ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
> news:6EAB16D3-7B19-47BE-B64F-1982ACE13A8D@microsoft.com...
> > Can this be done? I've got some VBA scripts to run on about 800+ MIF
> > files,
> > and I want to run the simple ones in one instance, and the complex one in
> > another instance (it has to be babied).
>
>
>

Re: Running two instances of Word at the same time by Jezebel

Jezebel
Mon Sep 26 04:29:13 CDT 2005

Where do scripts come in? The method suggested will work from within Word
VBA:

Dim pApp2 as Word.Application
Set pApp2 = new word.application





"ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
news:73E963DC-E3FF-4772-8CD9-3108CFBE3318@microsoft.com...
>I guess I should have been more specific. I don't want to call a second
>word
> app from a script; rather, I want to *start* the script from within the
> second instance so that I can monitor it (i.e., step through the routine).
>
> "Jezebel" wrote:
>
>> Yes it can be done. Use CreateObject() or set x = new Word.Application
>>
>>
>> "ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
>> news:6EAB16D3-7B19-47BE-B64F-1982ACE13A8D@microsoft.com...
>> > Can this be done? I've got some VBA scripts to run on about 800+ MIF
>> > files,
>> > and I want to run the simple ones in one instance, and the complex one
>> > in
>> > another instance (it has to be babied).
>>
>>
>>



Re: Running two instances of Word at the same time by ConvexTech

ConvexTech
Tue Oct 04 05:13:03 CDT 2005

Again,

I don't want to call this routine from the script. I want to have two
instances of Word OPEN, running at the same time, both running different
scrupts independently, that I will be stepping through.

"Jezebel" wrote:

> Where do scripts come in? The method suggested will work from within Word
> VBA:
>
> Dim pApp2 as Word.Application
> Set pApp2 = new word.application
>
>
>
>
>
> "ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
> news:73E963DC-E3FF-4772-8CD9-3108CFBE3318@microsoft.com...
> >I guess I should have been more specific. I don't want to call a second
> >word
> > app from a script; rather, I want to *start* the script from within the
> > second instance so that I can monitor it (i.e., step through the routine).
> >
> > "Jezebel" wrote:
> >
> >> Yes it can be done. Use CreateObject() or set x = new Word.Application
> >>
> >>
> >> "ConvexTech" <ConvexTech@discussions.microsoft.com> wrote in message
> >> news:6EAB16D3-7B19-47BE-B64F-1982ACE13A8D@microsoft.com...
> >> > Can this be done? I've got some VBA scripts to run on about 800+ MIF
> >> > files,
> >> > and I want to run the simple ones in one instance, and the complex one
> >> > in
> >> > another instance (it has to be babied).
> >>
> >>
> >>
>
>
>