Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Matt
 
Posts: n/a
Default wdSendToNewDocument Work around

I've got a bunch of merge documents that use:

..Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents that have a
special software on their computers that uses a customized .dot file. This
file overrides the .Destination = wdSendToNewDocument command in my script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are no
problems.

Is there a command I can use that does the same thing as .Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP
 
Posts: n/a
Default wdSendToNewDocument Work around

I would not accept the word of an "IT" guy that said that. However, if the
users need to be able merge to a new document then the IT guy should do his
job and sort out the problem.

If by chance there is some add-in that is causing the problem, select
Templates and Add-ins from the Tools menu and uncheck anything that it there
and see if that overcomes the problem.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
I've got a bunch of merge documents that use:

.Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents that have
a
special software on their computers that uses a customized .dot file.
This
file overrides the .Destination = wdSendToNewDocument command in my
script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of
the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are no
problems.

Is there a command I can use that does the same thing as .Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt



  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Matt
 
Posts: n/a
Default wdSendToNewDocument Work around

Doug,

I really wish I could ingnore that guy, but unfortunately they're pointing
the finger at me. They say there are more people using their software with
the .dot than are using my db/mail merge, so I've gotta make changes. Do you
know of any other way to automerge? (other than wdSendToNewDocument)

-Matt

"Doug Robbins - Word MVP" wrote:

I would not accept the word of an "IT" guy that said that. However, if the
users need to be able merge to a new document then the IT guy should do his
job and sort out the problem.

If by chance there is some add-in that is causing the problem, select
Templates and Add-ins from the Tools menu and uncheck anything that it there
and see if that overcomes the problem.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
I've got a bunch of merge documents that use:

.Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents that have
a
special software on their computers that uses a customized .dot file.
This
file overrides the .Destination = wdSendToNewDocument command in my
script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of
the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are no
problems.

Is there a command I can use that does the same thing as .Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt




  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP
 
Posts: n/a
Default wdSendToNewDocument Work around

Can you expand on this part of your original post

"These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of
the
merged doc to a new word doc yields the same results."

When you say "merge the documents", how is that being performed and to what
destination. There is nothing that should prevent you from copying and
pasting a document created by mailmerge just because that was the way that
it was created.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
Doug,

I really wish I could ingnore that guy, but unfortunately they're pointing
the finger at me. They say there are more people using their software
with
the .dot than are using my db/mail merge, so I've gotta make changes. Do
you
know of any other way to automerge? (other than wdSendToNewDocument)

-Matt

"Doug Robbins - Word MVP" wrote:

I would not accept the word of an "IT" guy that said that. However, if
the
users need to be able merge to a new document then the IT guy should do
his
job and sort out the problem.

If by chance there is some add-in that is causing the problem, select
Templates and Add-ins from the Tools menu and uncheck anything that it
there
and see if that overcomes the problem.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
I've got a bunch of merge documents that use:

.Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents that
have
a
special software on their computers that uses a customized .dot file.
This
file overrides the .Destination = wdSendToNewDocument command in my
script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste
of
the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are no
problems.

Is there a command I can use that does the same thing as .Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt






  #5   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Matt
 
Posts: n/a
Default wdSendToNewDocument Work around

There is an MS Access database, users select groups of data, and they are
then showed a form with multiple buttons. (each button opens a different
group of word documents based on the selected group parameters)

When a button is clicked the word documents open, and automaticly merge,
closing the original merge template, leaving the user with up to six merged
word documents open.

The docs automerge with:
Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

For the two users with this problem, the following are greyed out:

File-Save
File-Save As...
File-Print
Print button
Save button
Ctrl P doesn't work
Ctrl S doesn't work

If the entire merged document is copied and pasted into a new, blank word
document, these follow it for some reason.

Its really weird.

"Doug Robbins - Word MVP" wrote:

Can you expand on this part of your original post

"These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of
the
merged doc to a new word doc yields the same results."

When you say "merge the documents", how is that being performed and to what
destination. There is nothing that should prevent you from copying and
pasting a document created by mailmerge just because that was the way that
it was created.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
Doug,

I really wish I could ingnore that guy, but unfortunately they're pointing
the finger at me. They say there are more people using their software
with
the .dot than are using my db/mail merge, so I've gotta make changes. Do
you
know of any other way to automerge? (other than wdSendToNewDocument)

-Matt

"Doug Robbins - Word MVP" wrote:

I would not accept the word of an "IT" guy that said that. However, if
the
users need to be able merge to a new document then the IT guy should do
his
job and sort out the problem.

If by chance there is some add-in that is causing the problem, select
Templates and Add-ins from the Tools menu and uncheck anything that it
there
and see if that overcomes the problem.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
I've got a bunch of merge documents that use:

.Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents that
have
a
special software on their computers that uses a customized .dot file.
This
file overrides the .Destination = wdSendToNewDocument command in my
script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste
of
the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are no
problems.

Is there a command I can use that does the same thing as .Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt








  #6   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP
 
Posts: n/a
Default wdSendToNewDocument Work around

So, the merge to a new document does actually work, but those new documents
cannot be saved.

What do you get if from the Help menu, you select Activate Product?

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
There is an MS Access database, users select groups of data, and they are
then showed a form with multiple buttons. (each button opens a different
group of word documents based on the selected group parameters)

When a button is clicked the word documents open, and automaticly merge,
closing the original merge template, leaving the user with up to six
merged
word documents open.

The docs automerge with:
Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

For the two users with this problem, the following are greyed out:

File-Save
File-Save As...
File-Print
Print button
Save button
Ctrl P doesn't work
Ctrl S doesn't work

If the entire merged document is copied and pasted into a new, blank word
document, these follow it for some reason.

Its really weird.

"Doug Robbins - Word MVP" wrote:

Can you expand on this part of your original post

"These users can merge the documents, but they cannot save or print the
documents (print can be achieved via print preview). Even a copy/paste of
the
merged doc to a new word doc yields the same results."

When you say "merge the documents", how is that being performed and to
what
destination. There is nothing that should prevent you from copying and
pasting a document created by mailmerge just because that was the way
that
it was created.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
Doug,

I really wish I could ingnore that guy, but unfortunately they're
pointing
the finger at me. They say there are more people using their software
with
the .dot than are using my db/mail merge, so I've gotta make changes.
Do
you
know of any other way to automerge? (other than wdSendToNewDocument)

-Matt

"Doug Robbins - Word MVP" wrote:

I would not accept the word of an "IT" guy that said that. However,
if
the
users need to be able merge to a new document then the IT guy should
do
his
job and sort out the problem.

If by chance there is some add-in that is causing the problem, select
Templates and Add-ins from the Tools menu and uncheck anything that it
there
and see if that overcomes the problem.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Matt" wrote in message
...
I've got a bunch of merge documents that use:

.Destination = wdSendToNewDocument

in thier auto-merge macro:

Sub Startup()
Dim DocName$
DocName = ActiveDocument.Name
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With
Windows(DocName).Close wdDoNotSaveChanges
End Sub

The problem is that there are a few users of the merge documents
that
have
a
special software on their computers that uses a customized .dot
file.
This
file overrides the .Destination = wdSendToNewDocument command in my
script.
(according to an IT guy here)

These users can merge the documents, but they cannot save or print
the
documents (print can be achieved via print preview). Even a
copy/paste
of
the
merged doc to a new word doc yields the same results.

On all other computers not using the software/.dot file, there are
no
problems.

Is there a command I can use that does the same thing as
.Destination =
wdSendToNewDocument?

Thanks in advance,
-Matt








Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
word work files Lisa Microsoft Word Help 7 July 13th 05 09:20 PM
how do I scan a document into work for editing frustrated Microsoft Word Help 1 July 1st 05 05:30 PM
How do I delete files from the "Work" Built-In Menu button? Jedi Word Apprentice Microsoft Word Help 2 February 9th 05 11:13 PM
Hyperlinks don't work on my computer but do work on other computer TheDudeAbides Tables 1 February 8th 05 06:17 PM
How To Make Numbering Work Right? Peyton Todd Page Layout 2 December 17th 04 07:53 PM


All times are GMT +1. The time now is 10:44 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"