Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 31 results for
mailmerge
- Page 1
Running Word Mail merge from VB.Net
Programming
Software Development
15 Years Ago
by G_Waddell
…MyLabelLayout", LaserTray:=wdPrinterType) oWord.ActiveDocument.
MailMerge
.DataSource.QueryString = "SELECT * FROM… " & strCSVFile With oWord.ActiveDocument.
MailMerge
.Destination = WdMailMergeDestination.wdSendToPrinter .MailAsAttachment = False .MailAddressFieldName =…
Re: Running Word Mail merge from VB.Net
Programming
Software Development
15 Years Ago
by G_Waddell
… and then printng the Active document: [CODE] ...... With oWord.ActiveDocument.
MailMerge
.Destination = WdMailMergeDestination.wdSendToNewDocument .MailAsAttachment = False .MailAddressFieldName = "" .MailSubject = "…
Word 2010 Interop Print Avery Labels
Programming
Software Development
14 Years Ago
by G_Waddell
… have we? Dim ActiveDoc = oWord.ActiveDocument With ActiveDoc.
MailMerge
.MainDocumentType = 1 .OpenDataSource(Name:=CSVFile, ConfirmConversions:=False…quot;", AutoText:="MyLabelLayout", LaserTray:=Tray) With ActiveDoc.
MailMerge
.DataSource.QueryString = "SELECT * FROM " &…
VBA Word: Mail merge labels printing
Programming
Software Development
12 Years Ago
by amitash
…SubType:=wdMergeSubTypeAccess WordBasic.MailMergePropagateLabel ActiveDocument.
MailMerge
.ViewMailMergeFieldCodes = False With Application… Then End 'Print all records With ActiveDocument.
MailMerge
.Destination = wdSendToPrinter .SuppressBlankLines = True With…
Re: Word 2010 Interop Print Avery Labels
Programming
Software Development
14 Years Ago
by G_Waddell
…;, SubType:=wdMergeSubTypeOLEDBText) [/CODE] I then took a look at the
mailmerge
fields and the autotext and I found an example with…
php mail merge
Programming
Web Development
16 Years Ago
by phpsnook
hai! im working on a php/mysql based
mailmerge
project ..........but i have certain querys 1.does php offer support to write in MSword? 2.how to place data from mysql in desired place at MSword template..... pls do give suggestions ....
naming a Word bookmark in VB
Programming
Software Development
16 Years Ago
by likurg
…? I've got a macro that defines bookmarks across a
mailmerge
document, the next step for me is to title them…
Mail Merge?
Programming
Web Development
15 Years Ago
by jitesh_83
… need Office installed on the server, and even then the
mailmerge
might just open on the server. I've also tried…
Silly stuff for a Friday
Programming
Computer Science
16 Years Ago
by GuyClapperton
… wealthy clients, whose staff hadn't got the hang of
mailmerge
so the customers all received a letter from the Bank…
C# Word Automation creating Tables
Programming
Software Development
15 Years Ago
by jatin24
… C# using a pre-defined template. Im able to insert '
mailmerge
' fields in the word template documents at specific locations, and…
coldfusion merge to word
Programming
Web Development
15 Years Ago
by jaguardesigns
…; <cfset ProcessTimerStart = GetTickCount()> <cfscript> objMerge = newDoc.
MailMerge
; objMerge.Destination = 0; objMerge.MainDocumentType = 3; objMerge.SuppressBlankLines = True; //mDS…
Keyword databinding
Programming
Software Development
15 Years Ago
by Geekitygeek
… correct term for this, but i want to replicate the
mailmerge
style functionality in one of my apps. In other words…
Free Word Processor Software that....
Hardware and Software
Microsoft Windows
14 Years Ago
by TerryWood
… be put onto single letters from a contacts list (Not
Mailmerge
, preferably by a wizard interface. I have a copy of…
Micrsoft.interop.Word Conversion to PDF fails
Programming
Web Development
13 Years Ago
by crazyvonzipper
…("|", "'") }; // Populate the document with info doc.
MailMerge
.Execute(fields, values); // File attachment name string fname = Path.GetFileNameWithoutExtension…
Re: How to remove old version python?
Programming
Software Development
15 Years Ago
by gunbuster363
…requirement just here ( ) Generally ignore this requirement OpenOffice_org-
mailmerge
has missing dependencies There are no alternative providers of …) Conflict Resolution: ( ) keep OpenOffice_org-pyuno ( ) delete OpenOffice_org-
mailmerge
( ) Ignore this requirement just here ( ) Generally ignore this …
Re: VB and Excel.
Programming
Software Development
19 Years Ago
by Yomet
… am not sure that trying to use the Word's
MailMerge
functionality is the best way to go. All you will… have you make a letter, a full letter not a
MailMerge
template, from within your program. Here's what I would… the actual values into the Word document instead of inserting
MailMerge
fields. It should actually be easier since you can use…
Re: Form to Excel
Programming
Web Development
15 Years Ago
by NoID
… download the file and open it so i can do
mailmerge
.
Re: Form to Excel
Programming
Web Development
15 Years Ago
by almostbob
… download the file and open it so i can do
mailmerge
.[/QUOTE] If its just for mail merge output the query…
Re: Create PDF from php
Programming
Web Development
12 Years Ago
by showman13
… and create an excel file that could be merged using
mailmerge
would do the trick, but need to be able to…
Re: Php letter with different names
Programming
Web Development
10 Years Ago
by diafol
OK, pretty much like a
mailmerge
then from your description. You can use a placeholder: <…
Re: Word 2010 Interop Print Avery Labels
Programming
Software Development
14 Years Ago
by Adak
I would ask this in one of the MS usenet groups (in newsgroups). This issue must be affecting others. Your answer may be there waiting for you, already. In any case, you can get good answers, rather quickly there. Good luck.
Re: VBA Word: Mail merge labels printing
Programming
Software Development
12 Years Ago
by AndreRet
You can use something like - ActiveWindow.SelectedSheets.PrintOut Copies:=1 ''Or as many pages as you need...
Re: php mail merge
Programming
Web Development
16 Years Ago
by Shanti C
check this url: [url]http://www.xfunda.com/index.php?option=com_content&view=article&id=69:printable-document-generation-with-php&catid=41:php&Itemid=44[/url] [url]http://www.europeanexperts.org/question/954.html&lazone=PHP&c=2664[/url]
Re: C# Word Automation creating Tables
Programming
Software Development
15 Years Ago
by jatin24
Well i've figured out how to create tables.. It goes something like this if anyone is facing the same problem: [code] Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.ApplicationClass(); app.Visible = false; object start = 0; object end = 0; …
Re: Keyword databinding
Programming
Software Development
15 Years Ago
by kvprajapati
Correct me if I am wrong. I suggest you to use an expression field. [code] DataTable dt = new DataTable(); dt.Columns.Add("Title"); dt.Columns.Add("Colour1"); dt.Columns.Add("Colour2"); dt.Columns.Add("Expression", typeof(string), "'This ' +…
Re: Keyword databinding
Programming
Software Development
15 Years Ago
by Geekitygeek
Sorry, i probably didnt give enough details. I want the user to be able to type the description into a textbox/richtextbox in a designer. I then want to store their design with the keywords. But i need to be able to output the description with the correct values. The same way that you can write and save a letter in MS Word with <<Address …
Re: C# Word Automation creating Tables
Programming
Software Development
14 Years Ago
by haralab
Have you founded this feature yet?
Re: C# Word Automation creating Tables
Programming
Software Development
9 Years Ago
by VÃtor
Have you found this feature ??
Re: C# Word Automation creating Tables
Programming
Software Development
9 Years Ago
by VÃtor
I've tried to find the answer, but I failed. the best way I've found was what you showed to us. I put a bookmark at table, and I could handle it. Thanks for your help.
Re: C# Word Automation creating Tables
Programming
Software Development
9 Years Ago
by du_1
Hi there, We could use the Microsoft.Office.Interop.Word.Table.Style property to apply one of the Word built-in styles to a table. table.Range.Font.Size = 8; table.set_Style("Table Grid 8"); I don't know how to create custom table style using Interop.Word, but i also found the following toturials which may help to achieve this …
1
2
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC