TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Re: How Do I Add Keywords To An MS Word File Automatically?
Subject:Re: How Do I Add Keywords To An MS Word File Automatically? From:John Fleming <johntwrl -at- hotmail -dot- com> To:"TECHWR-L" <techwr-l -at- lists -dot- raycomm -dot- com> Date:Tue, 24 Jun 2003 20:05:54 -0600
On Tue, 24 Jun 2003 06:24:15 -0700 (PDT), in
bit.listserv.techwr-l you wrote:
> $Is it possible to add keywords to a Word file from a preset list, such
> $as a checklist, either with Visual Basic or some other utility? I know
> $I can add keywords manually via the Properties of a file We are trying
> $to figure out a way to mistake-proof the uploading process used to add
> $documents to our company's Intranet library.
> $
> $I'll be happy to summarize responses for the list.
> $
> $Thanks,
Document properties are part of the Visual Basic Object Model for
Word.
That means they can be manipulated using using Visual Basic.
For example, the following short macro changes the title in the
Properties "Title" box to "Training Your Wombat Nicely".
Sub Wombat()
ActiveDocument.BuiltInDocumentProperties("Title").Value = _
"Training Your Wombat Nicely"
End Sub
The complete list of built in properties that can be manifulated
programmatically this way is listed in Word's own help file. You
can use a related function, CustomDocumentProperties to
manipulate any custome properties defined as well.
--
John Fleming
Technical Writer
Edmonton, Alberta
RoboHelp Studio maximizes your Help authoring power by combining
RoboHelp Office and RoboDemo, so you can easily create professional
Help systems that feature interactive tutorials and demos.
---
You are currently subscribed to techwr-l as:
archive -at- raycomm -dot- com
To unsubscribe send a blank email to leave-techwr-l-obscured -at- lists -dot- raycomm -dot- com
Send administrative questions to ejray -at- raycomm -dot- com -dot- Visit http://www.raycomm.com/techwhirl/ for more resources and info.