Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
_Vfp.ActiveProject Question
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00550493
Message ID:
00550507
Views:
15
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--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform