Word Automation
Fri, 10 Oct 2008 11:27:15 -0700
Hello,
I have a macro which pulls in text files into a Word document:
Sub MergeTextFiles()
Documents.Add
ChDir ("C:\Documents and Settings\User\My Documents")
'Change the path above to point to the new text files
myName = Dir("*.txt")
While myName <> ""
Wit ...
|
WORD up Front
Fri, 10 Oct 2008 10:11:02 -0700
Don't blame me for asking a question twice!
Originally posted in OFFICE WORD APPLICATIONS
But there you go!
Any POSITIVE help will be applauded!
Regards,
Dave
"Terry Farrell" wrote:
> You may get an answer here but the Word VBA gurus usually hang out in the
> Word VBA newsgroups such as microsoft.publ ...
|
Averaging the values in Textboxes
Fri, 10 Oct 2008 09:52:01 -0700
I have created a small form with 10 textbox objects from the "Control
Toolbox" that will receive a value of 1 through 5 by the user. In the 11th
textbox I want to calculate the average of the 10 values. Can someone please
show me the code for getting this accomplished?
Thank you very much! ...
|
Select Drop Down Form Field with first letter
Fri, 10 Oct 2008 08:48:00 -0700
Does anyone know if it is possible to programme a drop down form field so
that the user can select their choice by typing the first letter of the word?
I have a document that collates responses from form fields using VBA to
collate them, and it works well and does what I want (cross fingers).
However, it' ...
|
get usernames of people who have the document open
Fri, 10 Oct 2008 06:14:00 -0700
hello everyone
i need to get usernames of people who have opened the document im currently
working on.
Is this possible?
If anyone can provide me a pseudo code would be great.
thank you
ahmed ...
|
"MatchEntry" propery for list.
Fri, 10 Oct 2008 06:02:57 -0400
This is (accurate) description of the function of the MatchEntry property
for a ComboBox control.
"The control searches the column identified by TextColumn for an entry that
matches the user's typed entry. Upon finding a match, the row containing the
match is selected, the contents of the column are display ...
|
table formatting and cell selection
Fri, 10 Oct 2008 00:01:02 -0700
i have programmed a working script that makes new tables and formats it the
way we need it and partially populates it with data
now i have used pieces of code like this
Selection.MoveRight unit:=wdCharacter, Count:=1
Selection.MoveRight unit:=wdCharacter, Count:=(UBound(HulpGieken2) + 1) *
(UBound(Hoe ...
|
|
|
Mapping Content Controls to External XML
Thu, 9 Oct 2008 20:55:50 -0400
Posting here for lack of or not knowing a better place.
Last year I experimented with mapping content controls and had some success.
I learned that I could map contentcontrols to a customXMLPart and that that
part could be defined in an external source.
My experimenting XML file is pretty basic:
<?xml v ...
|
DropDownList ContentControl PlaceHolderText
Thu, 9 Oct 2008 17:06:00 -0700
in Word 2007
I would like to be able to reset a dropdownlist to the placeholder text
using vba. Is this possible? I guess I would like ShowingPlaceholderText to
be read/write instead of read only. ...
|
add a new line in the middle of TOC
Thu, 9 Oct 2008 15:13:00 -0700
Hi,
Just wondering if i can do the following in TOC in word 03.
What i need to be able to achieve is
Table of Contents
Chapter 1 Introduction
Chapter 2 What is DMFC?
Chapter 3 ...
...
Chapter 10 Expression
<--- wish to put a new line here before the Appendixes
Appendix A Graph Projects
Appendi ...
|