| Thread | Last Post | Replies |
|
| table in header | 19 Apr 2007 02:00 GMT | 5 |
the situation: i have a word document that has a header and a footer in this header there is a single table with 1 row and 3 columns how can i go ,by vba code, to that table
|
| Returning a formula from another table | 19 Apr 2007 00:52 GMT | 2 |
I have 2 tables in a document. I have a macro that does a lot of adding, subtracting etc. in each table. I want to set up a formula in a cell in table 1 that returns the result of adding 2 cells from table 2, (eg total of adding cells C5 and D5 from Table 2 to show in cell H6 ...
|
| Replace text in cells | 18 Apr 2007 23:25 GMT | 3 |
I want to select text in a cell of a table where the cursor is and replace it with an autotext entry. This macro selects the cell, but I get an error message when I try to replace the text: ActiveDocument.Tables(1).Cell(1,2).Select
|
| Condtional ComboBoxes | 18 Apr 2007 19:25 GMT | 6 |
I am trying to have a second comboBox be contingent on the answer of the first. In the first ComboBox there are two choices “Professional” and “Leadership”. I would like only the corresponding answers to appear in the second ComboBox. Is this possible in word? If so How? Any help ...
|
| Word 2003 Macro Language | 18 Apr 2007 19:07 GMT | 5 |
When upgrading from Word 2000 to 2003, do I have to worry about my Word macros not working the same way in 2003? --
|
| Shell command under Windows Vista | 18 Apr 2007 19:06 GMT | 3 |
I have a tiny problem with a vba code under Windows Vista. I need a way to start a program using the shell command or something else like this: shell("updater.exe", 1) The problem is, that this is actually an updater program, which has to be
|
| Navigate to previous cursor locations | 18 Apr 2007 17:57 GMT | 2 |
I want to be able to navigate (i.e set the cursor) to previous selected positions in my word document because i use hyperlinks for words that need explanation, and i want to be able to return so users can keep reading without having to scroll all the way back. I have
|
| VBA, Word, XML, Save a Copy | 18 Apr 2007 17:27 GMT | 1 |
This is a tough one... I have a highly suseptible file in XML on a server with an http address that I can access through a slew of propriatory applications. I would like to create a copy of the file on my local drive using
|
| Error 91 | 18 Apr 2007 17:27 GMT | 1 |
I have a template which users use to create large documents with several chapters and subchapte also this template has many different macros including a few macro for moving or deleting chappters and subchapters. Sometimes when users uses macros to move the chpter or delete them ...
|
| Copy Figure/image | 18 Apr 2007 17:27 GMT | 1 |
I have a question on copying Fig/image from the doc. Now I'm able to copy all Fig/image in the doc to another doc by copy and paste the Shapes and InShapes obj in the activedocument by VBA
|
| How to get the record macro to repeat through entire document, EOF, etc. | 18 Apr 2007 17:27 GMT | 1 |
I recorded the is macro to help me covert a file to a specific format. The following works but I need it to repeat through the entire file: Selection.Find.ClearFormatting
|
| Word doc with XML & WML loosing formatting | 18 Apr 2007 17:27 GMT | 2 |
I'm working with a team that is taking information from a document, by getting the contents of the XML element that represents part of the document, and putting it in to a text dialog box for the user to edit. The doc is protected. Problem is when they go to put the information ...
|
| Word 2007: How to create and define an OMathBox with VBA? | 18 Apr 2007 17:27 GMT | 1 |
Word 2007 gives us many new objects and respective properties, but not all seem to be implemented: It seems to be beyond my reach to create an OMathBox for an existing equation and then give it the NoBreak property to prevent it from running on into the next line.
|
| Word 2003 template running as "AddIn" - strange behaviour | 18 Apr 2007 17:27 GMT | 3 |
I'm posting in this forum because the problem is only evident when running code from a button in a template loaded as an addin (or from start-up). Code snip from a VBA Form button. ~~~~~~~
|
| Finding labels in Word | 18 Apr 2007 17:27 GMT | 1 |
I have a nice little script to find custom labels set up in Word. Set objWord = CreateObject("Word.Application") objWord.Documents.Add For iCnt = 1 To objWord.MailingLabel.CustomLabels.Count
|