Auto Duplicate a Page in Word?
Tue, 25 Mar 2008 06:18:25 -0700
I want to create a template. The template will have two pages with a
different design for each (first page represents the front of a doc, the
second page represents the back of the doc for two-sided printing). When
necessary, I need Word to auto duplicate the page one design for odd pages
(3, 5, so on) and ...
|
Does anyone know of a 2007 version of Jay Freedman's autotextloade
Sat, 22 Mar 2008 01:50:00 -0700
Does anyone know of a version of Jay Freedman's autotextloader and
autotextdumber for moving autotext from a template to a standard work
document table?
For some reason it works in 2003 but not in 2007 and I can't work out the
reason
Thanks in advance for any assistance ...
|
Cycle through the Document Stories
Thu, 20 Mar 2008 18:13:02 -0700
I'm trying to create a macro that will clean out the tracked changes created
by a program called DeltaView. DeltaView is similar to the native Word
compare and merge feature except it uses styles to show deleted and inserted
text.
Deleted text is styled as "DeltaView Deletion" style which has style
att ...
|
Finding a table in the document
Wed, 19 Mar 2008 18:02:01 -0700
I need help in finding a specific table in a document. This table in one
document could be the 10th table while in another document it could be the
8th table. This specific table has user enter data that is used in
calculations that are placed in different cells in the same table.Would a
bookmark be the easi ...
|
Form Fields/Check Boxes
Tue, 18 Mar 2008 07:44:03 -0700
I am creating a word 2002 form to be used online as a fill-in application for
employment. I have written the macro below to use on exit for a form field
but would prefer it to work upon editing of the text such as checking yes in
a check box or entering name, address, etc. in a text box. Also, is there a
w ...
|
Help with IF THEN ELSE code
Tue, 18 Mar 2008 00:34:19 -0500
Greetings.
I need some assistance in determining the proper code for a Word macro I?ve written. Here?s the basic set-up.
I have a user form that contains six image boxes. Below each image is a text box, and above the image is a label. When I click the label an ?Open file? window appears and I can then choose ...
|
Trying to create a macro to change case on one style
Sun, 16 Mar 2008 15:11:44 -0700
I have Word 2000 and have limited experience in writing macros (though I
was a computer programmer many years ago, so understand logic).
I have a large document (300+ pages) with question/answer type things
all the way through the document. I have it now with 2 styles in my
document: DefaultText (for the q ...
|
|
|
Measuring the Width of Text with VBA?
Fri, 14 Mar 2008 13:31:36 -0700 (PDT)
Me again!
Is there any easy way to measure the width of, e.g., a Heading Two
using VBA. (As opposed to measuring the character count, which is
easy but unreliable).
Basically I want to know if any given heading occupies one, two, or
three lines of the page...
Cheers,
Matthew ...
|
Delete a table between two bookmarks
Fri, 14 Mar 2008 10:33:01 -0700
What I would like to do is delete a table between two bookmarks if row 2 cell
1 is blank. I've seen how to delete between two bookmarks:
Dim oRng As Range
With ActiveDocument
Set oRng=.Range(Start:=Bookmarks("BK1").Range.End,_
End:=BookMarks("BK2").Range.Start)
oRng.Delete
End With
But how would I ...
|
Why Doesn't This Loop-within-a-Loop Work?
Thu, 13 Mar 2008 16:09:32 -0700 (PDT)
So what I'm trying to do is loop through all the frames in my
document, and see if they're on the same page as text with the style
"Heading 2". Here's the code:
Dim SrcRg As Range
Dim frm As frame
Set SrcRg = ActiveDocument.Range
For Each frm In ActiveDocument.Frames
With SrcRg.Find
.ClearFormatting ...
|