I found the VBA code on the 'net to test if a specific font is installed or not, and it works ... most of the time.
The code is -
------------
Sub Testit()
myFont = "Free 3 of 9"
If FontIsInstalled(myFont) Then
Debug.Print "'" & myFont & "' is installed"
Else
Debug.Print "'" & myFont &...