Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Missing font from users machine
Message
De
02/07/2005 13:10:36
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01028509
Message ID:
01028511
Vues:
11
Robin,

You might want to create a mini utility to capture client side font info for you to look at. The following untested pseudo code creates a list of the fonts present on a users workstation and stores this info in c:\myfonts.txt and the Windows clipboard. Have you user run this script and then send you the file c:\myfonts.txt or have them paste the clipboard into their email message. That may give you some clues.
#define vfpCrlf chr(13)+chr(10)

lcFonts = ""
lnFonts = afont( laFonts )
for lnFont = 1 to lnFonts
  lcFonts = lcFonts + laFonts[ 1nFont ] + vfpCrlf
endfor
strtofile( lcFonts, "c:\myfonts.txt" )
_cliptext = lcFonts
Malcolm
Malcolm Greene
Brooks-Durham
mgreene@bdurham.com
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform