Substituted fonts notification

C

catspec2000

Hi all

Does anyone know I could write an AutoOpen macro that would display
message if there are missing fonts in a Word document?

I can have the FontSubstitution window display automatically when
open a document, but I'd like Word to do this only if there are missin
fonts.

Anyone any ideas?
Many thanks
L
 
K

Klaus Linke

Does anyone know I could write an AutoOpen macro that would display a
message if there are missing fonts in a Word document?

I can have the FontSubstitution window display automatically when I
open a document, but I'd like Word to do this only if there are missing
fonts.


Hi L.,

You could try something like

With Dialogs(wdDialogFontSubstitution)
If (.UnavailableFont <> "") Then
.Show
End If
End With

Greetings,
Klaus
 

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