Hi Tetet,
That depends heavily on the type of template. On screen instructions always
work best; the user sees what he has to do in the place where he has to do it.
What you can do, is insert text boxes (Insert | TextBox), near places where
guidance would be needed. Format the text boxes so that they have no fill and
no borders, and are placed in front of the text. Provide the texts you want
and give them a red, hidden format.
Include this macro in your template to ensure that the instructions are
visible:
Sub AutoNew()
ActiveWindow.View.ShowAll = True
End Sub
This way your instructions stand out, can be placed anywhere and above all
do not print.
--
You may also provide help by means of message boxes, triggered by clicking
on an item in a new, document-specific menu. For example in a letter
template, you may create a new menu Letter, with several help items. Each
items runs a macro like this:
Sub Letterhead()
MsgBox "<help text>", vbInformation + vbOKOnly, "Letter"
End Sub
--
....and of course you can combine the two.
Good luck,
Cooz