Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to know if MS-Word 2000 or better is available
Message
De
20/09/2006 04:20:47
 
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01155374
Message ID:
01155389
Vues:
17
This message has been marked as a message which has helped to the initial question of the thread.
>Hi all
>
>When a CREATEOBJECT() is executed to automate MS-Word it raises and error. How can I check before hand if MS-Word (better if I can find out if the version is 2000 or above) exists at all. I would like to disable a menu option before hand based on this fact.
>
>Please advise.
try
  ox=createobject('words.application')
catch
  messagebox('Word is not installed')
  ox=-1
endif
if vartype(ox)#'N'
  ** word in installed
endif
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform