Tagged Questions
The word-automation tag has no wiki summary.
3
votes
2answers
494 views
How to execute Word Automation Services programmatically?
How to force execute/start of Word Automation Services programmatically?
I need to start/execute once submit a conversion process.
string siteUrl = "http://localhost";
string ...
3
votes
1answer
356 views
How to programmatically use Word's “Compare and Merge Documents…” functionality from C#?
Question
Is it possible to call Word 2003's Tools > Compare and Merge Documents..." function from C# and to get feedback whether any differences were found or not?
What I have found so far
It is ...
3
votes
2answers
268 views
Start Word and monitor if document closed
we need for our school project a way to start a word instance and track if the document was closed. The COM api from word doens't have a event for this, are there any other ways to do this?
Currently ...
3
votes
2answers
311 views
How can I programmatically bring up the document properties window in Word and go to the Summary tab?
I am developing a VB6 COM add-in for Microsoft Word and I have added a button to the Ribbon which will save the document to a database. But before the document is saved, I want to take the user to ...
3
votes
1answer
2k views
Using Interop.Word, is there a way to do a replace (using Find.Execute) and keep the original text's justification?
I'm attempting to write find/replace code for Word documents using Word Automation through Interop.Word (11.0). My documents all have various fields (that don't show up in Document.Fields) that are ...
2
votes
2answers
124 views
Insert rtf text in a word document
I am using OLE Search Replace to replace "placeholder tags" with content stored in db fields into a Word docuemnt. I use a technique similar to what disussed here.
THis works but of course it doesn't ...
2
votes
1answer
157 views
How do I convert Word files to PDF using Word 2007 programmatically?
I used to convert Word documents to PDF via Word Automation: Enumerate the CommandBars until one containing "PDFmaker" was found, enumerating its controls and executing it.
With Word 2007 this no ...
2
votes
3answers
957 views
Options for automating Microsoft Word 2007 document creation
I have automated word document creation from templates using the "Microsoft Word 12.0 Object Library" in my project, but it is unacceptably slow. I'm looking for alternatives: I need to create a ...
2
votes
2answers
2k views
Office Primary Interop Assemblies not working after installing 2007 compatibility pack
I had a C# program that did some Word & Excel automation and it used Office 2003 Primary Interop Assemblies. The way I deployed it was by including the Interops in the bin and I had my program ...
2
votes
3answers
2k views
Automating Word Mailmerge not working as expected
I'm having a problem with some mail merge code that is supposed to produce letters within our application. I'm aware that this code is a bit rough at the moment, but we're in the "Get something ...
1
vote
1answer
583 views
Changing Bullet Styles with Word 2007 Automation in C#
I am trying to change the style of my bullets in a word document (Word 2007).... I currently place a bullet and it comes out as a circle. I want it to be a square... here's my code for applying ...
1
vote
1answer
352 views
Word 2003 vs. 2007/2010 Automation
I'm automating Word in a VB6 application and I'm getting an exception when the host machine is using Word 2007 or 2010 but not on a machine running Word 2003. The exception is
Runtime error ...
1
vote
2answers
333 views
Converting Word to PDF Using SharePoint 2010 Word Automation Services
I have tried to find out the way I can put locks or disable the copy and paste on the PDF file after the conversion. I looked at the ConversionJobSettings properties but I couldn’t be able to ...
1
vote
1answer
493 views
c# 4.0 and word 2007 automation
I am creating an application that gets thousands of word documents from an Oracle database and need to transform them into pdf and send them back to database. I already have all the support mechanism ...
1
vote
1answer
199 views
word automation problem
I am trying open a word document for manipulation. However in the code below 'wordApp.Selection' is always null
object missing = System.Reflection.Missing.Value;
Word._Application wordApp = new ...
1
vote
2answers
1k views
Word 2007 Application.ActivePrinter does not get set when default printer is a network printer
I am trying to use some Word 2007 automation where we give the user the ability to select a printer to print to and compile a word document. We give the ability to print locally or on a network ...
1
vote
1answer
921 views
C# Word spell check runs slow on Word 2007/Vista
I have written a DLL that uses MS Word to spell check the content of a RichtextBox. The project uses Microsoft Word 11.0 Object Library. I have read that you can use that reference on machines using ...
0
votes
0answers
8 views
Numbering in word
I am writing an addin for word.
the addin should change a numbered list in word.
original list:
foo
1.1 foobar a
1.2 foobar b
1.3 foobar c
bar
bar X
bar Y
The addin deletes 1.1 and 3.
The ...
0
votes
2answers
44 views
Set Word 2010 document margins from C#
I want to set the margins on a Word document I'm creating using automation from code in C#.
I've started the process using ActiveDocument.TopMargin = but I cannot find the C# code similar to the vb ...
0
votes
0answers
39 views
Word automation using VB - fast way to perform action on large number of files
I had tested this code: http://support.microsoft.com/kb/316383
It works, but a Word application is opened and each new paragraph added using VB code is seen one by one(with a small delay). If I want ...
0
votes
0answers
26 views
Safe to perform Word automation on open document?
I'm looking to perform Microsoft Word automation -- straightforward stuff such as instructing Word to open a document and save it as an RTF file. But what happens if the user already has the document ...
0
votes
0answers
29 views
How to update the activex control in a word document?
I have activex control (say check box) in a word template which i need to programmatically update the value of it using c#.I dono how to do this.
The document has form field controls which i can ...
0
votes
0answers
53 views
Splitting MS Word 2010 document to 2 files saving cross-references between them
After splitting Word 2010 document into 2 files cross-references between parts are broken. After updating references (ctrl + a, F9) they become: "Error! Reference source not found."
How can I split ...
0
votes
1answer
68 views
MS Word addin, macro or VBA script for passing word text to remote server, and displaying the response
I would like to create a button that the user can press on the MS word toolbar, after this the document text is passed to a remote service, and some tabular data is passed back and displayed to the ...
0
votes
2answers
105 views
OOXML :How can I Import altchunk elements after merging documents using Open XML SDK and altchunk?
I am using Open XML SDK and altchunk to merge multiple documents in a winforms application, after merging I want to manipulate paragraphs, the problem that until a document that contains altChunk ...
0
votes
2answers
85 views
In C# how can I automate testing of Word find/replace code?
I have an application in C# that automates the filling out of forms in Word from a Database.
I'm currently adding unit-testing to my application. there are a lot of calls to Replace(...), which is a ...
0
votes
1answer
45 views
Using Word automation, is it possible to find out if the active document contains any macros?
Using Word Automation, I want to save the active document programmatically. But in Office 2007/2010, the document needs to be saved explicitly as "macro enabled" if you want to preserve any macros in ...
0
votes
1answer
58 views
C++ Word Automation problem export chart or sheet in a workbook to Image
I need to insert a chart as an image programmatically in Word. Before being able to do that I need to convert a chart or a sheet (only containing a chart) of an excel workbook automatically. I've ...
0
votes
1answer
164 views
Calling a method on Object exposed by Word Add-in throws RemotingException
I am writing a (Shared) Word Add-In in C# and want to communicate with it by exposing an object through the Object property of the COMAddIn class.
Because I want my code to be executed on the UI ...
0
votes
0answers
112 views
Copy Headers in word automation
I am a newb to word automation, so please bear with me. I need to be able to copy the header from one document into another. I need to copy it as is, since i have no idea what might be in it (shapes, ...
0
votes
1answer
260 views
Using Sharepoint Word Automation to do a text replace
I am working with sharepoint 2010, what I am trying to do is take a word document template, do a replace on a few key words (ex: ##ClientID##) and save it with a specific name in a library on ...
0
votes
1answer
934 views
How to open a RTF file with C# without showing the Microsoft Word “Convert File” dialog?
Question
I want to programmatically open a RTF file in Microsoft Word using C#. But I don't want to get the "Convert File" dialog while doing that. How do I do that?
Code
I've tried this piece of ...
0
votes
2answers
67 views
Word mapped ContentControl returns messy data
I'm writing a c# plugin that creates a ContentControl and maps it to an XML file.
When the XML have a node with something like "7, SOMESTREET" i get inside the ContentControl the text ",7SOMESTREET" ...
0
votes
2answers
1k views
Word Automation - File is in use by another application or user
I have a WinForms application where I am using Word Automation to build documents via a template, and then save them to the database. After the document is created, I retrieve the document from the ...
0
votes
2answers
297 views
Align decimal points on word tables uisng automation
I want to align decimal points on a word table using automation and C#.
I have used the following method:
Object alignmentType=Word.WdTabAlignment.wdAlignTabDecimal;
Object ...
0
votes
1answer
299 views
Adding three aligned images to a word document footer
I am using Word Automation to create a document from my application, and I need to add three signatures to the footer of a document. That is easy, however, getting them to appear as I would like isn't ...
0
votes
1answer
593 views
Error automating Word on Test Server
I am trying to open a Word document from a .Net web application. The code (in brief) contains ...
using Word = Microsoft.Office.Interop.Word;
using System.Reflection;
and, the code that actually ...
0
votes
1answer
338 views
Can SharePoint 2010 Word Automation Services worker process have a frequency of less than 1 minute?
I'm considering using the Word Automation Services feature of SharePoint 2010 for a project. I will be converting single documents and my users will be waiting on the conversion so it needs to be as ...
0
votes
2answers
845 views
inserting selected page from one word document in another word document with c#
I have a requirement to move selected pages from word DocumentA into another word DocumentB.
So in the end DocumentB should have its own contents plus selected pages from DocumentA inserted at ...
0
votes
0answers
67 views
2008 Datacenter Word Automation issue
We have an application that uses word automation. It works fine under Windows XP, but does not work on our Windows Server 2008 64-bit virtual machine running on VMware ESX unless it is running as the ...
0
votes
1answer
1k views
Split documents in Word 2007
I have a couple of word documents and want to refer to and view specific sections of these. I thought about splitting the sections into seperate documents and then just viewing the correct files but ...
0
votes
1answer
181 views
range : apply formatting to a sub section in the range
I'm writing a piece of code in c# to generate a report in microsft word document.
I have a table of wid 2 columns.
I select the 2nd column by
oMainTable.Cell(currentRowNumber, 2).Range
Every time ...
0
votes
4answers
1k views
Programmatically printing directory of word documents… last file always skipped
I am having a problem when trying to programmatically print a directory of word documents. In this example, I am trying to print only the files with the "3_" prefix. The problem is that the file ...
-1
votes
1answer
336 views
IClassFactory failed due to the following error: 8001010a
This is working fine with Visual Studio's server but when the server is changed to IIS, it throws:
Creating an instance of the COM component with CLSID {00020906-0000-0000-C000-000000000046} from ...