2
votes
2answers
585 views

Inputting data from a dbgrid into a word mail merge

I'm wanting to create a mail marge for a letter inputting different names and address on each. I've used Microsoft example as a base point http://support.microsoft.com/kb/229310 and i've customized it ...
3
votes
1answer
598 views

Delphi Word automation - print merged document

My D5 application can currently mail merge multiple members data to a Word document using: wrdapp := CreateOleObjct(word.application); wrdDoc := wrdApp.Document.Open(TemplateLocation); wrdMailMerge ...
1
vote
1answer
454 views

Mailmerge in MSOffice 2010 vs Trial version, with Delphi

I'm attempting to make my Delphi membership application automate with word2010, by creating an oleobject instead of a form component: wrdApp := createoleobject('word.application'); opens a mail ...
1
vote
2answers
952 views

Delphi MailMerge Word2010 new page command

I am trying to update my membership software written in Delphi, to mailmerge in to Word2010. I'm using wrdApp := CreateOleObject('Word.Application'); wrdDoc := wrdApp.Documents.add(); then for ...
0
votes
1answer
958 views

MS Word 2010 mailmerge in Delphi 5

could anyone help? I've inherited some software written in Delphi 5 which allows member data and fields from a database (.ADT file) to be used merged in to word. It works fine with all version of ...