S
sestyd
Doug,
Thanks. I guess I shouldn't have changed the email
address -- well the form does say sender's email!
Can you point me to some good documentation in the MSDN
library? I'm looking for two things, the first like a
quick start for programming Word VBA.
Also, I'm trying to find a concise overview of the object
model and with each object, an explanation of the
properties and methods. For instance, the documentation of
the sections collection object doesn't list any of the
properties or methods, but there are ten properties on the
auto complete list box in VB. And the documentation for
the headers property says nothing about it's objects!
Vera
Hi Vera,
ActiveDocument.Sections(1).Headers
(wdHeaderFooterPrimary).Range.Text =
"Test"
will insert the word Test into the primary header of the
first section
of
the active document.
Please post any further questions or followup to the
newsgroups for the
benefit of others who may be interested. Unsolicited
questions
forwarded
directly to me will only be answered on a paid consulting
basis.
Hope this helps
Doug Robbins - Word MVP
Thanks. I guess I shouldn't have changed the email
address -- well the form does say sender's email!
Can you point me to some good documentation in the MSDN
library? I'm looking for two things, the first like a
quick start for programming Word VBA.
Also, I'm trying to find a concise overview of the object
model and with each object, an explanation of the
properties and methods. For instance, the documentation of
the sections collection object doesn't list any of the
properties or methods, but there are ten properties on the
auto complete list box in VB. And the documentation for
the headers property says nothing about it's objects!
Vera
Hi Vera,
ActiveDocument.Sections(1).Headers
(wdHeaderFooterPrimary).Range.Text =
"Test"
will insert the word Test into the primary header of the
first section
of
the active document.
Please post any further questions or followup to the
newsgroups for the
benefit of others who may be interested. Unsolicited
questions
forwarded
directly to me will only be answered on a paid consulting
basis.
Hope this helps
Doug Robbins - Word MVP