Font problems in custom templates

D

DP

Hi

I've created a template that is sitting on a network with about 6 users.
The default font on each user's machine is Palatino Linotype and the font in
the template is Palatino Linotype.

When a user copys text from any other document and pastes it into the
document they have created with the template the font comes in as Verdana.
This even happens if the original font is Times New Roman.

Does anyone have any ideas on how I can fix this?

Regards

Dawn
 
G

Graham Mayor

Use edit - paste special - as plain text (or with the following macro)

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
D

DP

Thanks Graham

I'll give it a go.

Dawn

Graham Mayor said:
Use edit - paste special - as plain text (or with the following macro)

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top