Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

File -> Properties –> Summary tab

Status
Not open for further replies.

jwxpnd

Programmer
Sep 29, 2005
43
US
How do I access this information from VFP?
I would like to collect the information from a group of files and store it in my database.
 

Mike, I think it refers to the Windows Explorer.
Besides the fact that jwxpnd would like "to collect the information from a group of files" programmatically through VFP, Windows Explorer does have that tab in File -> Properties dialog.
 
Yes, I am referring to the file properties dialog in the Explorer. Some files (such as images) have the summary tab and I would like to collect that information.
 

Some more "common" file properties (name, size, date & time of the last modification, attributes) you can get using ADIR() function.

But I don't think the properties you refer to are natively available in VFP. Possibly, some API functions may help to retrieve them.

Take a look at thread184-1268702. It is not 100% what you want, but I think it may help you handle your task. It has a very useful piece of code; I wonder if the same code can retrieve the properties you want.
 
So, far I am collecting information through ADIR and AGETFILEVERSION, but I also need the summary information.

Thanks Stella740pl I'll take a look.
 
You might also want to try using the FileSystemObject.

--------------
Good Luck
To get the most from your Tek-Tips experience, please read
FAQ181-2886
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
 
Try searching for:
DSOFile.OleDocumentProperties
On MSFT.This may be what your looking for.
wjwjr
 
Thank you CajunCenturion and white605 I'll take alook.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top