Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Find all the names of the files contained in the project
Message
General information
Forum:
Visual FoxPro
Category:
Project manager
Environment versions
Visual FoxPro:
VFP 6 SP5
Miscellaneous
Thread ID:
01009554
Message ID:
01009614
Views:
8
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform