0
votes
0answers
12 views

Word plug-in for getting spelling correction list

i want to write a office word plug-in on Visual Studio 2012 C#. inorder to collect all spelling correctment list. For example if i write "Stup" to Word and the Word will suggest to me "Stop" and ...
0
votes
1answer
18 views

Add page in Word Options menu

I'm developing and add-in for Word. I would like to create a configuration screen that allows the user to configure the add-in. What is the right way to do that? Is it possible to add configuration ...
0
votes
0answers
39 views

When some process is suspended, MS Word slows down in opening

I am using Windows 7 Enterprise Edition SP1 and MS office 2003. If i suspend any process in windows (say notepad or any other) and double click a MS Word document to open, it takes about 20 to 30 ...
1
vote
1answer
102 views

Open and modify Word Document

I want to open a word file saved in my server using "Microsoft.Office.Interop.Word". This is my code: object missing = System.Reflection.Missing.Value; object readOnly = false; object ...
0
votes
0answers
62 views

How can I print out a Word 2010 Document without the grey square brackets on the sheet?

How can I print out a Word 2010 Document without the grey square brackets on the sheet? It worked perfectly in Word 2007. But now printing the *.docx file in Word 2010 fails, because it prints out ...
0
votes
0answers
9 views

how can I put the defind macro-instruction on the word2013 panel?

I have make an user-defined macro-instruction,but how can I put it on the word2013 panel? I can do it on word2010,2007 or 2003,but in 2013 how to do it??
1
vote
1answer
103 views

How to add on mouse hover effect in Word 2010 addin

I wish to add text to the bottom of the font hover menu in word add-in: But i cant find any documentation regarding this specific menu. ADDED My goal is to get an onmousehover effect while ...
0
votes
1answer
45 views

Implementation of a custom menu for Office 2003 and Office 2007 (2010)

How can I define a custom menu (part of an addin) programmatically for Word 2003 and Word 2007 with the Visual Studio Tool for Office respectively .NET? The problem ist, that in Office 2003 there are ...
0
votes
2answers
298 views

MS Word 2010 mail merge: dynamic url, same text

I have a MS word 2010 mail merge that needs a personal url as href and a generic title for all users i can send a url that displays as the full url, but i want a generic display text so users dont ...
1
vote
2answers
186 views

RichTextBox loses all the formatting when exporting to word

I copied word content to richtextbox without loosing format perfectly, but now I am editing the content in the richtextbox. Now I want to export the richtextbox content to a word document without ...
0
votes
1answer
199 views

VSTO format word-footer to be left-bound

im need to implement a way to one-click add a footer to a word document consisting of one line. The first part needs to be the absolute Path to the document and it has to be left-bound. In addition to ...
-1
votes
1answer
60 views

Copy Word Footnotes

I've two word documents. Both documents are equals except for footnotes (just one doc contains notes). I need to copy that notes form one document to another one on the same position. I'm using ...
0
votes
0answers
180 views

Linking to MS-Visio page from within MS-Word (all 2010)

I must not be searching for the right terms, because I haven't found an answer yet. I have both Word & Visio 2010, and want to be able to link a page in Visio (or a portion of one) to a Word ...
1
vote
1answer
243 views

Applescript: Close Word document? (Office 2011)

i'm simply trying to close a document (without quitting word), but this does not work. I've tried : close documents saving no close active document close document 1 but none of this is working.. ...
1
vote
1answer
52 views

AllowFastSave not available

Microsoft.Office.Interop.Word.Application.Options.AllowFastSave doesn't appear to be available in my code. I'm using the Microsoft Office 14.0 object library, and every other property that appears on ...
0
votes
2answers
261 views

COMException occurred: ErrorCode = -2146824070

I am using the Interop library for Word, and I am getting a COM Exception: Message: "Type Mismatch" ErrorCode: -2146824070 Source: "Microsoft Word" The method throwing the error is: object docStart ...
3
votes
1answer
181 views

Launching Word x64 in Delphi

I am currently working on very old project, which is based on Delphi 5. When I am trying to open new Word document on x64 system, I recive this error: According to MSDN, the source of problem might ...
0
votes
3answers
1k views

Error reading word doc using Micorsoft.Office.Interop(Object library) via IIS 7

Iam facing issue while reading the document when runnning code from IIS. It is not reading the document and throwirng an error "No document is opne when trying to save the activedocument.". ...
1
vote
1answer
950 views

Uninstall MS Word Add-in

I'm in the process of learning how to create add-ins for Microsoft Office Word. I've created a simple Word 2010 Add-In project in Visual Studio 2010 which displays "Hello World" in a message box. Up ...
0
votes
1answer
141 views

My Word office addin doesn't work?

I have created an office addin for Word 2010 targeting .net 4 and this should apparently work in office 2007. I have created the installer per this article with the exception that I include a dll in ...
0
votes
3answers
938 views

Word Interop Issue with ASP.NET

About Microsoft.Office.Interop.Word. I installed the PIA and Microsoft Office 2010 in my web server, but I can't generate a .doc when I run the application published in my web server. When I run my ...
0
votes
2answers
450 views

How can I determine paragraph and line indents in MS Word documents with c#?

Any one Please tell me is there any way to determine indents of each line and paragraph in MS word documents. I’m new in Office programming and I intend to write an application which convert documents ...
1
vote
3answers
2k views

Stop Microsoft Word re-using WinWord.exe process created via COM Interop

All, If I start an instance of a word application via COM Interop, an instance of Winword.exe is started in the background. If I then subsequently load a Word document from Windows Explorer, it is ...
0
votes
1answer
789 views

Disable contextual tabs MS Word 2010

Is it possible to disable contextual tabs in MS Word using CustomUI xml? I added the following to customui XML but without any effect <mso:contextualTabs> <mso:tabSet ...
1
vote
1answer
427 views

Rename MS Word 2010 backstage tab

I want to rename MS Word 2010 backstage tab from "file" to another name from dotm file. Is there a way to do this?
0
votes
1answer
523 views

merge word documents to a single document

I used the code in the link mentioned below to merge word files into a single file http://devpinoy.org/blogs/keithrull/archive/2007/06/09/updated-how-to-merge-multiple-microsoft-word-documents.aspx ...
1
vote
3answers
648 views

Finding the Outline Level of a Office 2010 Word Document using VBA

I'm creating a VBA macro that will validate a submitted document, but I can't seem to find a way to check for the Outline Level of the document as a whole. What I need is a way to tell the outline ...
2
votes
1answer
2k views

Get current Cursor Position in Word (VSTO)

Is there a way for a Word Add-In to get the current cursor position within the document/on screen (e.g. to display my own control next to it)?
1
vote
2answers
838 views

Word Interop compile time error

I am getting the following error when referencing the assembly Microsoft.Office.Interop.Word in my asp.net application. The type 'Microsoft.Office.Interop.Word.ApplicationClass' exists in both ...
0
votes
1answer
1k views

Grayscale printing in Word 2007 from C#

I'm using Visual Studio 2010 to create a Word Template. I created a Ribbon with to buttons: print in color, print in B&W. I use the Document.printout() function to print the document. How can I ...
0
votes
1answer
522 views

Converting Word doc to tiff

I run Word 2003 in unattended process to convert a word doc file into a tiff. Word is configured to print to Microsoft Office Document Image driver and then pick up the generated file. It works fine ...
0
votes
1answer
71 views

Building Web Content and Word Documents

What is the best tool for breaking down Word docs into a series of strong, em, a, br, and p tags. I'd like to drop all other info. The built-in Word 2007 "Filtered" HTML "Save As" doesn't work that ...
0
votes
2answers
2k views

Word VBA Section break character in

How can you detect if the selection you have contains or is the section break character? At the moment I select a page , collapse to the end , I want to know if the end of the page contains a section ...
0
votes
1answer
261 views

Word Digital Signature

From what I understand PDF is an open format and you can digitally sign the PDF document as proof using a certificate issued by a CA which follows open standards.What about Microsoft word can I sign ...
1
vote
1answer
1k views

Apache POI HWPF, replacing text in .doc documents fails

I try to write down the result of the POI unit test at: code here, by adding the line daDoc.write(new FileOutputStream("C:\\wordtest.doc")); to the end of the method testRangeReplacementAll. The ...