Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Does anyone know how to programatically (using VBA) find the author of a file
(File menu, Properties and Author) as I can't record it or find it in the object browser |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Activeworkbook.BuiltinDocumentProperties("author") -- HTH Bob Phillips " m wrote in message ... Does anyone know how to programatically (using VBA) find the author of a file (File menu, Properties and Author) as I can't record it or find it in the object browser |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi James,
Try this.... sub test() dim strNameOfAuthor as string strNameOfAuthor = ThisWorkbook.BuiltinDocumentProperties("Author") msgbox "The Author name is " & cstr(strNameOfAuthor) end sub -- www.alignment-systems.com " wrote: Does anyone know how to programatically (using VBA) find the author of a file (File menu, Properties and Author) as I can't record it or find it in the object browser |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Bob that was very helpful
"Bob Phillips" wrote: Activeworkbook.BuiltinDocumentProperties("author") -- HTH Bob Phillips " m wrote in message ... Does anyone know how to programatically (using VBA) find the author of a file (File menu, Properties and Author) as I can't record it or find it in the object browser |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks John - very useful
James "John.Greenan" wrote: Hi James, Try this.... sub test() dim strNameOfAuthor as string strNameOfAuthor = ThisWorkbook.BuiltinDocumentProperties("Author") msgbox "The Author name is " & cstr(strNameOfAuthor) end sub -- www.alignment-systems.com " wrote: Does anyone know how to programatically (using VBA) find the author of a file (File menu, Properties and Author) as I can't record it or find it in the object browser |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Author of spreadsheet | About this forum | |||
want to see excel author name tab | Excel Discussion (Misc queries) | |||
Changing Author | Excel Discussion (Misc queries) | |||
Set author for a comment? | Excel Discussion (Misc queries) | |||
Find cell in Excel2000 workbook with link from another workbook? | Excel Discussion (Misc queries) |