Editing an array
Fri, 12 Mar 2010 15:58:01 -0800
I load a file into a string array using the Split funcsion in this statement:
arrDraft() = Split(Expression:=docDraft.Range.Text, Delimiter:="<")
Most of the "<" characters were inserted to number the sentences but some
may be spurious Word shrapnel or may have been entered by the author of
docDraft.
So ...
|
Word table to XML
Fri, 12 Mar 2010 12:21:01 -0800
Can some one help me in converting a word table to XML? I am using word 2003
and the macro should word even with word 2007.
Thanks in advance.
...
|
Paragraphs (^p) for ^13?
Fri, 12 Mar 2010 11:43:01 -0800
On Greg Maxeyâ??s site (http://gregmaxey.mvps.org/Replace_With_Paragraph.htm)
he states never to confuse a paragraph symbol (^p) with a simple return
(^13), which is the first confirmation Iâ??ve had of this.
However, in looking at these programmatically, how can you tell them apart?
They're both ASC13. ...
|
Drop-down Lists and Auto-Population
Fri, 12 Mar 2010 08:09:01 -0800
Hello,
I'm working on a Word (2007/2010) document and trying to create a table full
of drop-down lists. I want to be able to select a value from each drop down,
and have this selection show up later in the document. I've been plugging
through VB trying to write this up, but I can't seem to set up a label or ...
|
How to incorporate page counts in TOC
Thu, 11 Mar 2010 15:20:01 -0800
I need to find out how to incorporate each documentâ??s total page count into
the Table of Contents instead of the current page number.
In my case, we have 20-60 separate document files that need a single TOC
that states the total number of pages for each file.
Example:
Section No. of Pages
100 3
2 ...
|
Creating a custom table...
Thu, 11 Mar 2010 12:01:01 -0800
A couple of issues regarding table creation. I want to insert a set of tables
in a document header, but so they appear in the middle (vertically) of the
page concerned. I want them in the header so the user cannot inadvertantly
modify the table contents directly without actively entering into the header:
1. ...
|
How to batch create cross references (for glossary, bibliography)
Thu, 11 Mar 2010 11:08:01 -0800
Hi Word Gurus,
I am in the process of writing a (long) thesis. It contains about 250
literature citations. These are inserted using Endnote X3. That software is
OK, but what it can not do, is automatically link the literature citations to
the bibliography section. However, I'd like to do that. In the text, ...
|
|
|
Which field did I exit...
Thu, 11 Mar 2010 10:43:02 -0800
I am building a very complex form and need some assistance...
In this form, I use sections to hide/show mulitple repeated sections within
the form. Users click +/- buttons to add (unhide) or delete (clear all fields
and hide) these sections. No problem. Works great.
Within each section, use a scheme to dif ...
|
Read excel file and read in a cell into a var in VBA
Thu, 11 Mar 2010 09:11:01 -0800
Using the VBA from excel, I want to write a code to open another excel file
and access an individual cell in that excel file, then assign it to a
variable declared in VBA. Is this do-able? ...
|
Check For Valid Object Reference
Thu, 11 Mar 2010 07:28:01 -0800
How do you check if a reference is still valid? For example, if at the time
you need to use a another document reference, how can you check that itâ??s
still valid?
Dim sourceDocument as document
Set sourceDocument = documents.add
â?¦
If not sourceDocument is nothing then â?¦
Here, the sourceDocument ma ...
|