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
-
Microsoft : Edge is better than Chrome
by
Alex5723
3 hours, 49 minutes ago -
The EU launched DNS4EU
by
Alex5723
9 hours, 23 minutes ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
7 hours, 28 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
14 hours, 49 minutes ago -
Set default size for pasted photo to word
by
Cyn
20 hours, 51 minutes ago -
Dedoimedo tries 24H2…
by
Cybertooth
8 hours, 57 minutes ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
1 day, 19 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 17 hours ago -
Small desktops
by
Susan Bradley
10 hours, 29 minutes ago -
Totally disable Bitlocker
by
CWBillow
13 hours, 23 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
1 day, 17 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
2 days, 23 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
18 hours, 31 minutes ago -
Mystical Desktop
by
CWBillow
3 days, 3 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
2 days, 8 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
1 day ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
3 days, 18 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
3 days, 21 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
3 days, 19 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 17 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
4 days, 6 hours ago -
Location, location, location
by
Susan Bradley
2 days, 21 hours ago -
Cannot get a task to run a restore point
by
CWBillow
4 days, 8 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
3 days, 22 hours ago -
June 2025 Office non-Security Updates
by
PKCano
4 days, 18 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
7 hours, 38 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
4 days, 18 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
5 days, 5 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
4 days, 7 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
5 days, 13 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.