Re: Developing a Template - Questions on Instructions to the User
- From: "Mike@ACM" <MikeACM@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 5 Apr 2005 07:19:17 -0700
Jay,
Thanks for your macro suggestion, it may have possibilities.
1) Please help me understand how these macros are different from the
default printing (assuming that the user has NOT turned on HIDDEN TEXT
for printing)?
2) My understanding is that it is NOT possible to "hard wire" the "show/hide"
formatting marks to ON when a template is opened, correct? If not, how
can
this be done?
a) One of my leaders would prefer to have the HIDDEN TEXT visable
WITHOUT the rest of the formatting marks turned on. It can be done
in the window by Tools > Options > View > Formatting Marks >
Hidden Text.
Along the lines of your macros, is it possible to write a macro
that on
opening the template, it sets HIDDEN TEXT to visable in that
instance?
Thank you in advance for your input and assistance.
Mike
"Jay Freedman" wrote:
> Hi Mike,
>
> There are probably many ways to go about this, but I'll suggest one that's
> particularly easy for the "Word uninformed":
>
> In the template, create a style specifically for the instructions, and apply
> it to all the instructions (and only the instructions). If the style
> includes a frame, you can position the instructions in the margins;
> otherwise, the collapse of the hidden text will change the page layout. The
> choice of font characteristics is up to you.
>
> Write two macros in the template, named FilePrint and FilePrintDefault --
> these names causse the macros to intercept the File > Print menu item and
> the toolbar Print button, respectively. Assuming the style is named
> "Instructions", these macros will force the document to print without
> anything formatted in that style:
>
> Public Sub FilePrint()
> On Error Resume Next
> ActiveDocument.Styles("Instructions").Font.Hidden = True
> Options.PrintHiddenText = False
> Dialogs(wdDialogFilePrint).Show
> ActiveDocument.Styles("Instructions").Font.Hidden = False
> End Sub
>
> Public Sub FilePrintDefault()
> On Error Resume Next
> ActiveDocument.Styles("Instructions").Font.Hidden = True
> Options.PrintHiddenText = False
> ActiveDocument.PrintOut Background:=False
> ActiveDocument.Styles("Instructions").Font.Hidden = False
> End Sub
>
> The only requirements this places on the users are (1) always use the proper
> template to create the documents, and (2) don't format anything in the
> Instructions style unless they want it not to print. And make sure they know
> that the Print Preview will display the instructions, so it can't be trusted
> to show the document as it will print.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
>
> Mike@ACM wrote:
> > We are creating/updating a template for a business request plan.
> >
> > 1) We are looking for a way to include instructions/suggestions to
> > the writer about what information should be included at specific
> > points and suggesting additional types of information for including.
> >
> > 2) We want to have this visable to the writer while they are
> > composing it, but should not be included in the printing of the
> > "final" document.
> > - Current version has text boxes with instructions to writer to
> > delete prior
> > to going final, but it IS NOT WORKING and have gotten many
> > comments about having to delete "all" these instruction.
> > - There are some concerns that if the user has the option to
> > "turn it off"
> > (to make it not visable), that they will readily ignore
> > it/forget that it is
> > there to aid them with the document.
> > - Desire to have the solution keep it simple, so the Word
> > uninformed do not feel lost/confused.
> >
> > Is hidden text the best solution, or are there better solutions with
> > Word to fix this?
> >
> > Thank you in advance for your assistance,
> > Mike
>
>
>
.
- Follow-Ups:
- Re: Developing a Template - Questions on Instructions to the User
- From: Jay Freedman
- Re: Developing a Template - Questions on Instructions to the User
- References:
- Developing a Template - Questions on Instructions to the User
- From: Mike@ACM
- Re: Developing a Template - Questions on Instructions to the User
- From: Jay Freedman
- Developing a Template - Questions on Instructions to the User
- Prev by Date: How do I determine a template in which a document was saved by so.
- Next by Date: font size
- Previous by thread: Re: Developing a Template - Questions on Instructions to the User
- Next by thread: Re: Developing a Template - Questions on Instructions to the User
- Index(es):
Relevant Pages
|