Tagged Questions
Visual Basic for Applications (VBA) for Microsoft Word
6
votes
0answers
178 views
Alternatives for replacing text selection under Outlook with custom HTML code
I need to replace an user selection while editing an Outlook e-mail with my custom HTML code.
I tried two approaches:
Using the Clipboard
In HTML mode.
Getting the Word.Range from the ...
5
votes
2answers
900 views
Trigger MS Word macro after save event
My MS Word 2007 template has a footer with the filename in it. The user is going to open the template and do a "Save As..." to make their document.
I want the filename shown in the footer to update ...
5
votes
1answer
214 views
Macro for one-to-many splitting of Word documents
I have a Word document which is several hundred pages long.
I would like to use a macro to automatically create about a dozen or so sub-documents based on certain rules (mainly, occurrence of certain ...
4
votes
2answers
225 views
Run external vba-code in MS Word
Can I link in external code to a Word document?
I have a lot of word documents with macros (VBA-code). All with the same code. I would like the code to be run from an external source instead of from ...
4
votes
2answers
213 views
Get me started programming and debugging Microsoft Office automation
I'm using Microsoft Office 2003 and creating a bunch of template documents to standardize some tasks. I asked this on Superuser.com and got no response so I'm thinking it's too program-y and hoping ...
4
votes
2answers
293 views
How do I check programmatically if any document properties of a MS Word 2007 document has changed?
For example, I want the Title fields in the body and the page headers of the document to be updated automatically whenever the Title field in the document properties panel is changed. I know how to ...
3
votes
1answer
42 views
How can I compare Word Interop objects for “reference equality” AND determine collection or parent object to which, say, a paragraph belongs?
I would like to be able to:
compare Word Interop COM proxies on a "reference equality" basis; and
map from a specific object (say a paragraph) to the collection it comes from, OR at least
determine ...
3
votes
1answer
1k views
VBA - Use multidimensional array instead of two separate ones?
Lots of stupid questions lately, but I would appreciate some input on this one.
I've got a string that comes from an INI-file. It looks like Firstname=FIRSTNAME. This is basically an array with loads ...
3
votes
3answers
2k views
Programatically configure Office 2010 Word Ribbon via VBA
Is it possible to configure a Ribbon (e.g. adding a tab etc.) in Office 2010 programatically via VBA? I.e. by writing VBScript code in a macro.
Br. Morten
3
votes
1answer
107 views
VBA Word Range Operations Seem Different
In using or setting Ranges, some Ranges behave differently that other Ranges. For example,
ActiveDocument.Range(10, 20).Select
ActiveDocument.Tables(2).Cell(1, 1).Range(10, 20).Select
The first ...
3
votes
3answers
784 views
Extract Headings and Pagenumber of Table of Contents of a Word Document with VBA
Basically what we have here
http://stackoverflow.com/questions/274814/getting-the-headings-from-a-word-document
Public Sub CreateOutline()
Dim docOutline As Word.Document
Dim docSource As ...
3
votes
1answer
199 views
Recheck Document For Spellings Not Same as VBA Code
I want to recheck the spellings in a document after adding a dictionary. The problem is the following code (mostly from the macro recorder)
CustomDictionaries.Add FileName:="c:\test_dictionary.dic"
...
3
votes
2answers
786 views
Word 2007 VBA: Documents.Add results in template being locked
I have a simple macro that creates a new document based on a template that's stored on a network share; this macro is stored in each user's Word\STARTUP folder as the file "macros.dotm" and is ...
3
votes
1answer
344 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 ...
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
507 views
Generate word documents from excel file using mail merge
I am trying to generate word documents using the mail merge feature in Microsoft Word. To be as clear as possible my dream would be to:
(1) Place all values for all documents to be created in one ...
3
votes
3answers
516 views
Make the first letter bold on each sentence in MS Word document
I'd like to make first letter on each sentence bold in a MS Word document. What would be a good way to accomplish this?
3
votes
1answer
462 views
Run-time error 459 when using WithEvents with a class that implements another
I am developing a VBA project in Word and have encountered a problem with handling events when using a class that implements another.
I define an empty class, IMyInterface:
Public Sub Xyz()
End Sub
...
3
votes
1answer
258 views
Create bookmark into 1st column of MSWord table
does anyone have a VBA code to create a bookmark into the first column of an MSWord table?
Let's say I have a table looking like this
.-----.----------------.
. ref . Title .
...
3
votes
2answers
1k views
Word 2003 - How to use a Macro to Change styles?
Is it possible to create a Word 2003 Macro to change the font style of certain segments of a document?
For example, say I have a document that has a large portion of text as bold italic and 12 point ...
3
votes
2answers
601 views
How can I use an Access query which uses Access-VBA-defined functions in Word VBA?
State of the question:
I no longer think it is relevant that I'm referencing Excel or that the query has parameters. I think question boils down to this: How can I use an Access query which uses ...
3
votes
2answers
576 views
How do you hyperlink to Word 2007 help pages?
I want to hyperlink to a page within the Word 2007 Object Model Reference documentation, that ships with Word 2007. These are webpages that use the ms-help:// protocol that Firefox cannot understand.
...
3
votes
3answers
561 views
Practical limits of Word/VBA apps
The company I work for has an internally developed Word2003/VBA application that's already about 6.5 mb in size and they're looking to add an additional 200+ macros to it, which, I'm assuming, will ...
3
votes
2answers
635 views
Disable or Override Ribbon/CommandBar commands in MSWord using VBA
First of all I'm going to state right out that I've never worked with VB in the context of coding macros before - my skills lie in other areas (PHP, Javascript, getting there with C#, etc). However, ...
3
votes
1answer
2k views
How-to: Run existing Word VBA Macros from C# Ribbon Addin
Background: I have an extensive set of specialized VBA macros used in Word for document formatting purposes. In Word 2003, these macros were activated from a customized toolbar. I have recently ...
3
votes
1answer
345 views
A more complex word macro then I'm used to (i.e. I can't record it)
I am trying to write a word macro that Selects everything that is Heading 2 (or any specific style), copies it and pastes it into an Excel document. Macro recording doesn't work here and I'm stumped ...
3
votes
1answer
1k views
How can I copy and paste a range of tables in Word?
EDIT: If you have an example in VBA, I'll take it. I'm just trying to understand how to use the Range object with the Tables collection to copy and paste multiple tables without looping. Put another ...
3
votes
6answers
3k views
Implement auto-increment with Word macro
I'm writing a Word/VBA macro for a document template. Every time a user saves/creates a new document from the template, the document needs an ID embedded in the text. How can I (as simple as possible) ...
2
votes
1answer
15 views
How do I create a Macro in Word 2011 that asks the user if they want to do it again?
I have a basic macro that prompts the user for input, then formats that input and puts it into the document. For example:
Sub AddNewName()
'
' AddNewName Macro
'
'
Dim FirstName As String
...
2
votes
1answer
46 views
Excel 2010 equation editor object access through vba
In Excel 2010 the equation editor is not listed in the Object Browser. In Word, the object is called OMath http://msdn.microsoft.com/en-us/library/bb256563%28office.12%29.aspx. Maybe Excel uses a Word ...
2
votes
1answer
74 views
How can I replace a Microsoft Word character style within a range/selection in VBA?
I'm working on a Word 2007 template with a macro that will apply character styles to the selected text. It seemed that the Find/Replace feature would be a good place to start, but I think I've found a ...
2
votes
1answer
64 views
Delete last list Item with Word VBA
I am trying to remove the last bullet/item from a bulleted list in Word with VBA.
It is possible to get the empty items with the following code, but I don't know how to delete this items:
For Each ...
2
votes
1answer
78 views
Word 2010 VBA - Manipulating Numbered Lists
I'm trying to take a numbered list created in Outlook and manipulate it based on the top-level list items. Unfortunately, the only way I've found to manipulate the list is through the ListParagraph ...
2
votes
1answer
118 views
Possible to call Microsoft Word Macros from within Powershell?
I've created some Microsoft Word 2010 macros using the Record Macro feature. This includes searching the document to find a certain string of words, and to insert those string of words into excel.
I ...
2
votes
1answer
152 views
Can I change the behaviour of the Insert Table command in Word 2007?
In Word 2007, the "Insert" ribbon tab has a "Tables" group with a single drop-down button (labelled "Table").
The drop-down contains various menu items such as "Insert Table...", "Draw Table", etc. ...
2
votes
1answer
153 views
Word style is changed after applying ApplyListTemplate
I have a Word document containing a numbered list like this
Item 1
Item 2
Item 3
The list style is "List Paragraph". Left indent of "List Paragraph" is 0.5". If we run the following code to ...
2
votes
1answer
475 views
Finding Image reference in MS Word using VBA
I am trying to copy an excel Table and image from MS EXCEL to MS WORD using VBA. I was struggling to find out how will I reference the tables and images into the Word once they are sent from excel.
...
2
votes
1answer
323 views
Adding attachment to mail merge to email
I am trying to create a mail merge to email which also adds an attachment. I am following a procedure outlined in the article
http://word.mvps.org/FAQs/MailMerge/MergeWithAttachments.html
The ...
2
votes
3answers
1k views
Vba - Return multiple values from a function, sub or type?
So I was wondering, how can I return multiple values from a function, sub or type in VBA?
I've got this main sub which is supposed to collect data from several functions, but a function can only ...
2
votes
2answers
735 views
VBA - How to add a collection to a collection of collections
I am trying to create code to represent a form document using VBA in Word 2007. I have created classes to represent Section, QuestionSet and Question.
So I have 15 Sections. I have created a function ...
2
votes
2answers
541 views
Word VBA to retrieve IP address “silently”
I need to pull out the IP address into a VBA macro. This code works but the command dialogue is briefly visible which is not a good look. Can I use a modification to do it "silently" ?
Sub getIP()
...
2
votes
2answers
272 views
How do I use VBA to obtain the file path to a shortcut from which the ActiveDocument was launched?
I am building a document management system. In each subdirectory within the main document repository, there is a shortcut to a document template. When a user wants to create a new document, he/she ...
2
votes
1answer
311 views
Determine whether a Word document contains a restricted font using VBA
Is there a way to determine whether or not a Word document (specifically 2007, if that matters) contains a restricted font using VBA?
I don't necessarily need a way to remove the font, just to ...
2
votes
1answer
544 views
VBA MS Word Font color
I want to read read through a Word document, find any text that is marked in any color other then black and delete it. How to find the text color in VBA?
2
votes
2answers
413 views
MS Word VBA, trying to populate a combobox with data from an http call
I'm using the following code to populate a combobox in Word 2003.
Private Sub UserForm_Initialize()
ComboBox1.List = Array("Red", "Green", "Yellow", "Blue")
End Sub
What I would like to do is get ...
2
votes
1answer
97 views
In Microsoft Word VBA, how do I check for repagination?
I am using Microsoft Word 2007. I open up some document with VBA and I need to do some work on them. However when a file is just opened, VBA do this repagination and doesn't wait for it to finish ...
2
votes
2answers
244 views
Updating TOC with formula
I've updated page numbers in my word document using a formula. Now page numbers have series like 1,1,2,2,3,3..
But, the numbers in TOC are still same as previous. I've tried updating them using ...
2
votes
1answer
523 views
VBA: Word 2010 - Close Header & Footer Tools with VBA
I'm using a macro, which inserts a text into the footer. After the macro has finished, the Header & Footer Tools are active, so I'm in the editing mode for the footer. Does anyone know how to ...
2
votes
1answer
131 views
Program the Navigation Pane in Word 2010
I'm trying to find a way to program the new Navigation pane in Word 2010 to change tabs when a user selects a picture in the document. I can capture the selection change with ...
2
votes
1answer
624 views
How can I automatically highlight and extract colored text in MS Word?
I have a bunch of documents that need to be edited. The authors use blue text in some parts of the documents to indicate that those words need to be linked.
Thank you cornelius for the highlight text ...