Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
_Vfp.ActiveProject Question
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00550493
Message ID:
00550507
Vues:
14
This message has been marked as the solution to the initial question of the thread.
>The _Vfp.ActiveProject.HomeDir property returns the home folder
>for the project.
>
>How do I determine the location of the files in the project. Some
>files may be relative to this, some may not. Is there a sure-fire
>way to find a file's location?
>
>Thanks
You can do it using Files collection
nFileCount = Application.ActiveProject.Files.Count

FOR nCount = 1 TO nFileCount
   ? Application.ActiveProject.Files.Item(nCount).Name
NEXT
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform