Object VBA

E

Eric Gagne

Hi,

I search the name of box dialog who display the property (metadata) a file
same Owner, Created Date etc...

I work with visual basic for access.

Thank you for reply.
 
C

Chip Pearson

Eric,

You don't say what program you're using. In Excel, the following
code will display the properties dialog.

Application.Dialogs(xlDialogProperties).Show


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
T

Tony Jollans

He does say actually :)

In Access try using ...

DoCmd.RunCommand acCmdDatabaseProperties
 
Top