Yeah, it's all a bit confusing. Acrobat has two ActiveX interfaces, the IAC and the browser plug-in. You want the IAC (inter-application communication) interface. The browser plug-in won't do you any good.
One of your best sources of info (besides the IAC reference at livedocs) is the SDK download. Which you can get here: http://www.adobe.com/devnet/acrobat.html
It contains several example VB projects which show exactly how to connect to a document open in Acrobat/Reader.
I'm sure you don't really want to execute menu items in Acrobat. There are normally much more reliable ways to get something done, especially if you are running from a VBA macro in Excel. What is it that you are trying to accomplish?
Thom Parker
Thanks for the response Thom. You are correct I do not really want to run Acrobat from Excel. Here is the project.
1) I have a scanned all of my personal documents into a nice PDF library.
2) Now I would like to automate some of the maintenance tasks of this library by reading selective content from the PDF document and then taking actions in the library.
3) One example is to collect key infomation such as the date of a bill or the amount of a receipt and then rename the file or extract the information into a spread sheet.
4) The only method that I have found is to run OCR and save the file into a text file and then perform a search on the text file. In theory the search command in Acrobat can find fields but it is not flexible enough to search for a key word such as "total" and then pick up the adjacent data as the total amount.
5) I have also found that OCR is quite noisy and unreliable because of the quality of some of my scans and documents so I have to perform cross checking to qualify the data.
6) With Acrobat it seems difficult to process the same operation or series of operations on many files and then return a result to another application so that I can automate the process.
7) VBA in Excel does a nice job of supporting this and has good documentation if can get the data extracted from the PDF.
Thanks for any further help. Adobe documentation is very diffuse or should I say distributed and it has been difficult for me to get current and direct information on Acrobat 10.