0
votes
0answers
47 views

How can I rewrite the following MS Word VBA macro to be compatible with Word 2007/2010/2013

I am looking to make my MS Word VBA macro compatible with Word 2007,2010, and 2013 without having to download the MS Office Object Libraries 12,14, and 15 on all my machines. Any types how I can ...
0
votes
0answers
28 views

Add a threepart footer via C# to a Word 2007 document

I am new in Office automation via C#. I want to create programmatically a new word document with a threepart footer. The footer should have 3 parts: a text A on the left, in the middle there should be ...
0
votes
1answer
166 views

Restrict MS Word Content Control Functionality

I have a MS Word document and that document has multiple content control. When user copies entire data from one content control to another sometimes it copies content control itself with data and when ...
0
votes
0answers
51 views

How to get relative cell B2 in Word 2003 formula?

I can reference to a cell with for example B2, but when i copy the row with this formula in it and paste as a new row the formula still references B2 and not B3 like it works in Excel. So my question ...
0
votes
2answers
351 views

How to read Word, Excel Metadata by Vb.net?

i want to read the metadata (such as author, keywords, etc.) of the Word, Excel file by asp.net (vb). How can I do that ? is there any sample, reference site ? thanks. i found the following code ...
1
vote
1answer
445 views

Displaying a Microsoft Office document in a WPF control

I am developing a WPF application that allows a user to browse the contents of a directory. What I want to be able to do is, if the user clicks on a Microsoft Word or Excel doc, have the file display ...
0
votes
0answers
147 views

Clean trash tags MS Office using regex & PHP

I want to remove all the "junk" tag MS Office and I'm doing it this way: function mtrim($val){ $val=trim($val); $val=preg_replace("/\s+/us"," ",$val); ...
0
votes
1answer
718 views

Convert docx to doc without Office.Interop.Word

I'm trying to find the solution for converting .docx files to .doc in .NET. I've googled this problem near 3 day, trie a lot of variants: I've tried to convert with Office.Interop.Word. Yeah, thats ...
0
votes
0answers
107 views

Word - one Bookmark different Font and an hyperlink

I have an word template with different bookmarks. I will programmatically replace the bookmark with text. it is in c#. To replace only the text, is not the problem. The problem is, that I need a ...
2
votes
1answer
534 views

Delete specific linebreaks with Word Interop

i have Problems to delete some specific Linebreaks with word interop. It seems that the indexes of doc.Content.Text does not match with the ones of word.. I need to delete all breaks which has no dot ...
0
votes
0answers
67 views

Word 2010, TOC linking to 10 pages ahead of where it should

I have a Word 2010 document and its 251 pages, I have a link on page 240 and 250 and both of these try to link to 10 pages ahead of they should like page 240 goes to 250 and 250 wont go anywhere ...
-1
votes
1answer
147 views

Need a simple tool for drawing arrows and labels

I am trying to do a mock up technical guide with bunch of screenshot and arrows along with labels numbering each arrow. I am look for a tool that allows me to draw arrows (I know I can do that with ...
2
votes
1answer
129 views

How to convert word selection to html?

How does the selected text in Word to convert to HTML format with minimal losses, by VSTO?
0
votes
0answers
160 views

Quickest and Easiest Way to Automate Text Replacement Logic in a Microsoft Word 2007 Document?

I have a letter written in MS Word 2007 that I wish to modify and send to several different people. I need to personalise each letter by changing a few words, sentences and paragraphs, as well as ...
2
votes
2answers
425 views

Closing a process that open in code

I create a WordTemplate with some placeholders for field,in code I insert value in this placeholders and show it to user. protected void Button1_Click(object sender, EventArgs e) { string ...
1
vote
2answers
506 views

How to programmatically create a formatted text in VBA?

I need to create a text (2 lines, multiple fonts) programmatically, that I later place in several tables (<100) of my document. The only way I found out to solve this, is to create a ...
1
vote
3answers
799 views

Code to read Word docs

I need a script (or other code, C#, etc.) that will fetch every paragraph/sentence containing a particular word in a set of Word 2007 documents and move them to a new Word document, recording the ...
0
votes
1answer
995 views

ActiveDocument.Tables(k).Range.Cells(j).Shading.BackgroundPatternColor returns -1

After a long search, I am coming to you asking kindly for your help. I have a Word 2007 doc with a lot of tables. Each table has certain cells filled with 2 custom colors. I created a macro which ...
0
votes
1answer
326 views

Add one Office Document to another and keep format (Excel into Word) (OpenXmlPowerTools)

I want to add one office document to another. Until now I had to add a word document to another word document. This was very easy to implement via OpenXmlPowerTools. But now I have to add a xls ...
2
votes
3answers
230 views

Any tool to help writing programing article with MS Office Word

All! When I use MS office 2010 Word to write an article about Java, I always need to embed some Java code into the document. I wonder whether there is such a plugin for Word, or another software tool, ...
1
vote
1answer
1k views

how to programmatically check protection on a word document vbscript

I'm using a vbscript to programmatically run through a list of word documents, open each one, modify it, then save it using ms word 2010. My problem is there are protected and unprotected documents in ...
0
votes
1answer
161 views

Ways/Sources to learn writing macros for Microsoft office word

Please someone help me to find sources to learn writing macros for MS Office Word. I am ended up with getting web pages for only "Recording macro" explained in different ways. While seeing those web ...
0
votes
1answer
154 views

Convert 20k Word Doc into small HTML pages with auto created meta tags?

I have a huge word doc 20,000 words long and I would like to upload it to my blog. However I would like to break it up into small(ish) webpages and if possible auto generate relevant keywords, title ...
1
vote
1answer
77 views

Text parsing with VB in Word

Using word 2007, I need to parse text in a document. The text is in the form: <number>. <question_text> a. <answer1_text> b. <answer2_text> c. <answer3_text> d. ...
1
vote
2answers
655 views

How to parse ms-office docs

I need to create a application (preferably in c#/win32) to open a office doc [97-2003 format] ( Word, PPT, EXCEL) and parse the data structures, validate the fields, values and cross references, show ...
1
vote
0answers
110 views

Adding a third-party control to my custom Word Ribbon Tab

I have been working on this for days now and cannot seem to find an answer. Before I deem it as "impossible", however, I thought I'd ask the question here to see if anyone can help me find a solution. ...
0
votes
2answers
166 views

Recognizing new or already known document with VSTO

I've never worked with VSTO and I've recently read all kinds of stuff about it. So I ask a theoretical question. I'm trying to make an addin which should (using buttons in it's own ribbon tab) upload ...
2
votes
1answer
292 views

Execute a remote process on a non-admin account using Powershell

I want to run aa remote process (winword.exe more specifically) from a remote machine using Powershell 2.0. One requirement is that the process is run by a non-admin user account. I'm able to run ...
3
votes
3answers
562 views

Issue with Excel into Word then export to PDF

I am currently with a problem. I am creating a reporting system in C#. It uses Excel and Word. The system generates a Word document and then imports the Excel document into the Word document. The ...
3
votes
2answers
1k views

C# & Word - Replace with Formating

In it's simplest form what I am attempting to do is fill out some information on a preexisting word document. Which my code does quite nicely... What it doesn't do is fix up the formatting like it ...
2
votes
1answer
1k views

Find with powershell the Last Saved By of word and excel documents

I have a folder with sub folders and I want to run a powershell script that finds all the office documents (word and excel 2003,2007 and 2010 for the moment) and print the "last saved by" property ...
3
votes
3answers
1k views

Documents.Add fails on ASP.NET (VB.NET)

I am having an issue with opening a document using Microsoft Word from ASP.NET MVC. This works perfectly on my developer machine, but not when deployed to IIS. Dim word = New ...
0
votes
1answer
740 views

How to access columns in a table that have different cell widths from MS Word

I am trying to get the cells from 1st column in a table. Getting exception in the "Foreach(Cells c in rng.Tables[1].Columns[1].Cells)" because the table contains columns that have mixed cell widths. ...
1
vote
2answers
2k views

Read word document in C#

I want to read a word document in the server (both doc and docx). The server does not have office installed, therefore i can't use com objects and also no commercial softwares. Is there a way that I ...
1
vote
4answers
1k views

How do I read Word, Excell, and PDF docs in PHP?

I need to be able to read the text of many different file types in PHP, including .doc, .docx, excel, and PDF files. I found a few methods online that require installing multiple packages but I was ...
2
votes
1answer
5k views

Is there an inverse mode for Microsoft Word? [closed]

I'm wondering if there's any way to invert the colors in Microsoft Office Word - that is, view white text on a black background. I mainly ask because I'm used to dark color schemes a la Notepad++ ...
1
vote
1answer
912 views

Why doesn't the VSTO Word ContentControl have a Name property?

When you add a VSTO (not Word native) content control, you specify the name: controls.AddContentControl(wordRange, "foo", wdType); Where controls is the VSTO (extended) Document.Controls ...
2
votes
2answers
980 views

How to put Objective C code into Word (Office) with syntax highlighting

I am writing documentation about an app and want to explain the code. I want to copy parts of the Objective C code from Xcode to Microsoft Word. I don't know how to put the code with syntax ...
2
votes
2answers
4k views

MS Office Word 2007/2010 - how to view edit an existing built in mail merge SELECT?

I've few word documents with Mail merge in them, I have to change the data source, but to do so I need to extract all the SELECT queries from these documents in order to detect the tables and fields ...
0
votes
1answer
346 views

Visio 2007 to Word 2000, images being changed during printing process

I am currently sorting out some screenshots for some software documentation. I take a screenshot, paste it into visio 2007, do some alterations and add shapes etc and then copy it into word 2000. It ...
0
votes
4answers
2k views

Fastest way to programmatically replace text in a Word document

The task is to replace specific keywords in a Word document using .NET. What would be the fastest and most reliable way to make it retaining original formatting and document structure?
0
votes
1answer
306 views

Can I put a splitButton control on the QAT of Word 2010?

I have added some custom buttons on the QAT of the Word 2010 using RibbonX, I also want to use splitButton to group a few buttons, but I found the QAT cannot display custom splitButtons. Part of the ...
5
votes
1answer
647 views

Misspellings in Microsoft Word

I am working with misspellings in Microsoft Word. With only just a few misspellings, accessing the SpellingErrors collection becomes gawdawful slow (at least with For/Next or For/Each loops). Is ...
2
votes
2answers
410 views

MS Word 03 - Terribly simple question about turning off the squiggly lines for code

So I am making documents with code examples in word. The squiggly lines....how do I turn off the red and green lines that appear under the grammer and spelling errors?? Sorry I know its simple for ...
0
votes
5answers
2k views

Read word document in ASP.NET and replace text (Office 2003/2007)

I'm using VS 2005, asp.net 2.0. I need to read a word document (.doc) in asp.net, make some replaces and then generate another word document. So far OK. I've done it in a machine that have the ...
0
votes
1answer
263 views

Generate a blank table on form check in Word 2003

In Word 2003, I am trying to create a form that can generate additional entries if the person filling out the forms requires them and clicks a checkbox stating (for additional tables click here). I ...