I’m using excel 2000 and adobe 5.0. When I load excel the menu has Acrobat with a menu item Convert to Adobe PDF, I would like to know the code to select and execute or click on Convert to Adobe PDF using vb.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Excel Vba (Excel 2000)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Excel Vba (Excel 2000)
- This topic has 18 replies, 4 voices, and was last updated 20 years, 8 months ago.
Viewing 1 reply threadAuthorReplies-
WSjscher2000
AskWoody LoungerAugust 27, 2004 at 10:16 pm #869774You can “click” a menu choice using the CommandBars collection. I don’t know the exact wording of the menu item you have, but here’s an example:
Sub TestSaveAs()
Application.CommandBars(“Worksheet Menu Bar”).Controls(“&File”). _
Controls(“Save &As…“).Execute
End Sub(The & precedes the underlined accelerator key, if applicable.)
-
WSmlorenz
AskWoody LoungerSeptember 24, 2004 at 5:03 pm #881200Thanks. I tried:
“CommandBars(“Worksheet Menu Bar”).Controls(“Acro&bat”). _
Controls(“&Convert to Adobe PDF”).Execute”
This command work to a point. It starts Adobe’s “Convert to PDF File” button in excel, save the excel file, and coverts and saves the convertion. They it locks up. It closes the excel file and locks up excel. There must be something else happening when you activite the buildin button. When I just click on the button it work as it should. (converts to pdf and returns to excel) -
WSjscher2000
AskWoody LoungerSeptember 24, 2004 at 9:04 pm #881310Sorry to hear about the lock-up! It sounds as though the code works, but perhaps VB is locking up waiting for some signal that the command it invoked has completed. Ctrl+Break is supposed to halt the VB runtime, but it doesn’t always work. You could try it, but all this might tell you is that yes, VB is still running…
I can’t remember whether it was in thread or another one, but I think it was a little bit difficult to find out the name of the procedure that the button calls. You could try extracting the OnAction and Parameter properties of that button using the Immediate window in the VBE. E.g.,
?CommandBars(“Worksheet Menu Bar”).Controls(“Acro&bat”).Controls(“&Convert to Adobe PDF”).OnAction
Then you could try calling those procedures directly. Not sure this would solve the problem.
Another option is to change the Acrobat toolbar buttons so that they have a shortcut key and use SendKeys to issue that key combination. But I suspect you are trying to do something more hands off. Maybe you can explain your application a bit more?
-
WSRNicholsHoHum
AskWoody LoungerSeptember 25, 2004 at 8:37 am #881385In the hope of not appearing too naive, what happens if you use the record macro option to capture some code when the button is pressed. I don’t know how well this works with a third party application, but it might be worth looking at the code Excel generates to see if that has any pointers in it.
-
WSjscher2000
AskWoody Lounger -
WSjscher2000
AskWoody Lounger
-
-
WSRNicholsHoHum
AskWoody LoungerSeptember 25, 2004 at 8:37 am #881386In the hope of not appearing too naive, what happens if you use the record macro option to capture some code when the button is pressed. I don’t know how well this works with a third party application, but it might be worth looking at the code Excel generates to see if that has any pointers in it.
-
-
WSjscher2000
AskWoody LoungerSeptember 24, 2004 at 9:04 pm #881311Sorry to hear about the lock-up! It sounds as though the code works, but perhaps VB is locking up waiting for some signal that the command it invoked has completed. Ctrl+Break is supposed to halt the VB runtime, but it doesn’t always work. You could try it, but all this might tell you is that yes, VB is still running…
I can’t remember whether it was in thread or another one, but I think it was a little bit difficult to find out the name of the procedure that the button calls. You could try extracting the OnAction and Parameter properties of that button using the Immediate window in the VBE. E.g.,
?CommandBars(“Worksheet Menu Bar”).Controls(“Acro&bat”).Controls(“&Convert to Adobe PDF”).OnAction
Then you could try calling those procedures directly. Not sure this would solve the problem.
Another option is to change the Acrobat toolbar buttons so that they have a shortcut key and use SendKeys to issue that key combination. But I suspect you are trying to do something more hands off. Maybe you can explain your application a bit more?
-
WSrory
AskWoody LoungerSeptember 27, 2004 at 10:48 am #881887Hi,
Have you tried something like:
Application.Run “PDFWriter.xla!printpdffile”
You may need to replace the ‘printpdffile’ bit with whatever is assigned to the toolbar button ( you can check by selecting Tools-Customize… then selecting the Convert to PDF button and choosing Modify Selection and then Assign Macro… to see what the assigned procedure name is.)
Hope that helps. -
WSmlorenz
AskWoody Lounger -
WSrory
AskWoody LoungerSeptember 28, 2004 at 9:23 pm #882612Hi,
I wasn’t suggesting you record a macro. If you follow my instructions, it should show you the name of the procedure that the Convert to PDF button calls. You can then use code in the form:
Application.Run “PDFMaker.xla!procedurename” to run the same code that the Convert to PDF button calls – i.e. the actual code in the PDF add-in. This should be exactly the same as clicking on the menu item manually. I have Acrobat 5 on my laptop so I will try it tomorrow and see what the actual code should be, if I get a chance. -
WSrory
AskWoody LoungerSeptember 28, 2004 at 9:23 pm #882613Hi,
I wasn’t suggesting you record a macro. If you follow my instructions, it should show you the name of the procedure that the Convert to PDF button calls. You can then use code in the form:
Application.Run “PDFMaker.xla!procedurename” to run the same code that the Convert to PDF button calls – i.e. the actual code in the PDF add-in. This should be exactly the same as clicking on the menu item manually. I have Acrobat 5 on my laptop so I will try it tomorrow and see what the actual code should be, if I get a chance. -
WSrory
AskWoody Lounger -
WSrory
AskWoody Lounger
-
-
WSmlorenz
AskWoody Lounger
-
-
WSrory
AskWoody LoungerSeptember 27, 2004 at 10:48 am #881888Hi,
Have you tried something like:
Application.Run “PDFWriter.xla!printpdffile”
You may need to replace the ‘printpdffile’ bit with whatever is assigned to the toolbar button ( you can check by selecting Tools-Customize… then selecting the Convert to PDF button and choosing Modify Selection and then Assign Macro… to see what the assigned procedure name is.)
Hope that helps.
-
-
WSmlorenz
AskWoody LoungerSeptember 24, 2004 at 5:03 pm #881201Thanks. I tried:
“CommandBars(“Worksheet Menu Bar”).Controls(“Acro&bat”). _
Controls(“&Convert to Adobe PDF”).Execute”
This command work to a point. It starts Adobe’s “Convert to PDF File” button in excel, save the excel file, and coverts and saves the convertion. They it locks up. It closes the excel file and locks up excel. There must be something else happening when you activite the buildin button. When I just click on the button it work as it should. (converts to pdf and returns to excel)
-
-
WSjscher2000
AskWoody LoungerAugust 27, 2004 at 10:16 pm #869775You can “click” a menu choice using the CommandBars collection. I don’t know the exact wording of the menu item you have, but here’s an example:
Sub TestSaveAs()
Application.CommandBars(“Worksheet Menu Bar”).Controls(“&File”). _
Controls(“Save &As…“).Execute
End Sub(The & precedes the underlined accelerator key, if applicable.)
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Phishers extract Millions from HMRC accounts..
by
Microfix
7 hours, 9 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
9 hours, 1 minute ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
12 hours, 10 minutes ago -
Mystical Desktop
by
CWBillow
12 hours, 23 minutes ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
7 hours, 10 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
2 hours, 34 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
1 day, 3 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 day, 6 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
1 day, 4 hours ago -
What is wrong with simple approach?
by
WSSpoke36
21 hours, 3 minutes ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
1 day, 15 hours ago -
Location, location, location
by
Susan Bradley
6 hours, 22 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
1 day, 17 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
1 day, 8 hours ago -
June 2025 Office non-Security Updates
by
PKCano
2 days, 4 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
6 hours, 42 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 days, 4 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
2 days, 14 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
1 day, 17 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
2 days, 23 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
2 days, 23 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
2 days, 12 hours ago -
Firefox 139
by
Charlie
2 days, 5 hours ago -
Who knows what?
by
Will Fastie
1 day, 7 hours ago -
My top ten underappreciated features in Office
by
Peter Deegan
2 days, 23 hours ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
17 hours, 28 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day, 19 hours ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
4 days, 5 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
1 day, 4 hours ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
4 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.