Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.mailmerge.fields
[email protected] sweetguy1only@gmail.com is offline
external usenet poster
 
Posts: 5
Default MailMerge from Access to Word 2003

Hi all,

I am using VBA to create MS Access applications. When my clients get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application. The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If

  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default MailMerge from Access to Word 2003

Maybe the "Opening This Will Run the Following SQL Command" Message is
getting in the way.

See:http://support.microsoft.com?kbid=825765


--
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

wrote in message
oups.com...
Hi all,

I am using VBA to create MS Access applications. When my clients get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application. The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If



  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
[email protected] sweetguy1only@gmail.com is offline
external usenet poster
 
Posts: 5
Default MailMerge from Access to Word 2003

On May 10, 2:29 am, "Doug Robbins - Word MVP"
wrote:
Maybe the "Opening This Will Run the Following SQL Command" Message is
getting in the way.

See:http://support.microsoft.com?kbid=825765

--
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

wrote in message

oups.com...



Hi all,


I am using VBA to create MS Access applications. When my clients get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application. The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If- Hide quoted text -


- Show quoted text -


No, my clients don't get that message. However, they do get a message
saying Windows has problem starting Microsoft Word.

  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default MailMerge from Access to Word 2003

Do you ship a .doc with the connection already made to the correct Access
path name - i.e. if they opened the Word .doc in Word directly, would you
expect it to be connected to the database? If so, it is worth asking them to
try that to see what error message they get. It is probably also worth
asking them to connect manually to the query to see what happens - if there
is no suitable document, asking /one/ of your clients to try that probably
wouldn't be too onerous as long as they are reasonably technically-minded,
particularly if you can get them to display the mail merge toolbar.

Peter Jamieson
wrote in message
oups.com...
On May 10, 2:29 am, "Doug Robbins - Word MVP"
wrote:
Maybe the "Opening This Will Run the Following SQL Command" Message is
getting in the way.

See:http://support.microsoft.com?kbid=825765

--
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

wrote in message

oups.com...



Hi all,


I am using VBA to create MS Access applications. When my clients get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application. The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If- Hide quoted text -


- Show quoted text -


No, my clients don't get that message. However, they do get a message
saying Windows has problem starting Microsoft Word.


  #5   Report Post  
Posted to microsoft.public.word.mailmerge.fields
[email protected] sweetguy1only@gmail.com is offline
external usenet poster
 
Posts: 5
Default MailMerge from Access to Word 2003

On May 10, 9:36 am, "Peter Jamieson"
wrote:
Do you ship a .doc with the connection already made to the correct Access
path name - i.e. if they opened the Word .doc in Word directly, would you
expect it to be connected to the database? If so, it is worth asking them to
try that to see what error message they get. It is probably also worth
asking them to connect manually to the query to see what happens - if there
is no suitable document, asking /one/ of your clients to try that probably
wouldn't be too onerous as long as they are reasonably technically-minded,
particularly if you can get them to display the mail merge toolbar.

Peter wrote in message

oups.com...



On May 10, 2:29 am, "Doug Robbins - Word MVP"
wrote:
Maybe the "Opening This Will Run the Following SQL Command" Message is
getting in the way.


See:http://support.microsoft.com?kbid=825765


--
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


wrote in message


groups.com...


Hi all,


I am using VBA to create MS Access applications. When my clients get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application. The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If- Hide quoted text -


- Show quoted text -


No, my clients don't get that message. However, they do get a message
saying Windows has problem starting Microsoft Word.- Hide quoted text -


- Show quoted text -


Thank you very much for your response.

To answer your question, no, I don't ship any .doc with the software.
It is up to my clients to define their mail templates.

Most of my clients are not computer savvy at all. Lots of them don't
even know how to copy files from their own desktop to a CD or to a
flash drive. That's the difficult part. If they know something, I
can ask them to try certain thing for me. But since lots of them are
not computer savvy, it may do more harm than good if I were to tell
them to try things.



  #6   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default MailMerge from Access to Word 2003

OK, so you can't experiment in the client environment.

Questions/thoughts:
a. is there any other obvious difference between the client systems that
work and the ones that don't? Perhaps the systems that do not work are
operating in a more tightly controlled network environemt? That kind of
thing? Maybe you cannot tell.
b. Do you have a testbed that more accurately reflects a likely client
environment, e.g. does not have any development tools on it? Perhaps in a
VM?

Peter Jamieson

wrote in message
ups.com...
On May 10, 9:36 am, "Peter Jamieson"
wrote:
Do you ship a .doc with the connection already made to the correct Access
path name - i.e. if they opened the Word .doc in Word directly, would you
expect it to be connected to the database? If so, it is worth asking them
to
try that to see what error message they get. It is probably also worth
asking them to connect manually to the query to see what happens - if
there
is no suitable document, asking /one/ of your clients to try that
probably
wouldn't be too onerous as long as they are reasonably
technically-minded,
particularly if you can get them to display the mail merge toolbar.

Peter wrote in message

oups.com...



On May 10, 2:29 am, "Doug Robbins - Word MVP"
wrote:
Maybe the "Opening This Will Run the Following SQL Command" Message is
getting in the way.


See:http://support.microsoft.com?kbid=825765


--
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


wrote in message


groups.com...


Hi all,


I am using VBA to create MS Access applications. When my clients
get
the application, they are only getting the Access run-time; they
don't
need the full version of Access in order to run the application.
The
problem that I am having with is, I am using VBA to do a mailmerge
from a recordset in Access to a new word document or existing word
document. This feature works on most of my cleints' machines.
However, for certain clients, when the word document comes up, the
Insert Merge Fields option in the Mail Merge Toolbar would be greyed
out. For these clients that are having problem, they are all using
Windows XP Professional with MS Word 2003. The weird thing is, I
have
Windows XP Professional with MS Word 2003 too but it works for me
every single time. My codes are as follows, can anyone give me
some
pointers on how to correct the problem please?


Thanks in advance,
Monte


Set WordApp = CreateObject("Word.Application")


If stMergeDoc = "" Then 'Create a new Word doc


Set WordDoc = WordApp.Documents.Add


Else 'Open the word document selected by the user


Set WordDoc = WordApp.Documents.Open(stMergeDoc)
'Set objWord = GetObject(stMergeDoc, "Word.Document")


End If


WordApp.Visible = True
'objWord.Application.Visible = True


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc, _
SubType:=wdMergeSubTypeWord2000
'SQLStatement:=strSQL


If Err.Number = 448 Then 'they have word 2000, so try again
without the subtype argument


WordDoc.MailMerge.OpenDataSource _
Name:=CurrentDb.Name, _
LinkToSource:=True, _
Connection:="QUERY " & stMergeSrc
End If- Hide quoted text -


- Show quoted text -


No, my clients don't get that message. However, they do get a message
saying Windows has problem starting Microsoft Word.- Hide quoted text -


- Show quoted text -


Thank you very much for your response.

To answer your question, no, I don't ship any .doc with the software.
It is up to my clients to define their mail templates.

Most of my clients are not computer savvy at all. Lots of them don't
even know how to copy files from their own desktop to a CD or to a
flash drive. That's the difficult part. If they know something, I
can ask them to try certain thing for me. But since lots of them are
not computer savvy, it may do more harm than good if I were to tell
them to try things.


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
mailmerge out of Access 2003 Dixie Mailmerge 5 August 19th 06 09:06 AM
Mailmerge doc will not open from Access 2003 ucmlamb Mailmerge 2 March 7th 06 04:00 PM
Mailmerge 2003 Word documents with Access yes/no values BrendaV Mailmerge 1 October 14th 05 04:21 PM
Mailmerge using Word and Access 2003 Chester1 Mailmerge 1 October 5th 05 12:47 PM
MailMerge Word 2003 to Access 2000 query blank data BCool Mailmerge 1 January 15th 05 12:31 AM


All times are GMT +1. The time now is 01:19 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"