Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Find all the names of the files contained in the project
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de projet
Versions des environnements
Visual FoxPro:
VFP 6 SP5
Divers
Thread ID:
01009554
Message ID:
01009614
Vues:
10
This message has been marked as a message which has helped to the initial question of the thread.
>Hi all
>
>How can I get a list of all the files in a project *without* opening the project.
>
>Please advise.

There is also a SQL option (Only tested in VFP9, I do NOT have VFP6):
select name as cName, type as cType ;
   from myproject.pjx ;
   where type <> 'H' ;
   order by cType ;
   into cursor crsFiles
In VFP 9, you can get much more useful results:
SELECT type as cType, CAST(CHRTRAN(name, CHR(0), []) as V(90)) as cName ;
   FROM myproject.pjx ;
   WHERE type <> 'H' ;
   ORDER BY cType, cName
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform