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
-
June 2025 updates are out
by
Susan Bradley
12 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
5 hours, 12 minutes ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
5 hours, 16 minutes ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
7 hours, 45 minutes ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
7 hours, 46 minutes ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
7 hours, 44 minutes ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
5 hours, 38 minutes ago -
re-install Windows Security
by
CWBillow
11 hours, 1 minute ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
14 hours, 42 minutes ago -
macOS Tahoe 26
by
Alex5723
8 hours, 55 minutes ago -
Migrating from win10 to win11, instructions coming?
by
astro46
3 hours, 12 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
15 hours, 28 minutes ago -
Recommended watching : Mountainhead movie
by
Alex5723
12 minutes ago -
End of support for Windows 10
by
Old enough to know better
8 minutes ago -
What goes on inside an LLM
by
Michael Covington
4 hours, 52 minutes ago -
The risk of remote access
by
Susan Bradley
3 hours, 7 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
6 hours, 24 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
4 hours, 26 minutes ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
1 day, 13 hours ago -
EaseUS Partition Master free 19.6
by
Alex5723
13 hours, 43 minutes ago -
Microsoft : Edge is better than Chrome
by
Alex5723
2 days, 2 hours ago -
The EU launched DNS4EU
by
Alex5723
2 days, 15 hours ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
2 days, 5 hours ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
2 days, 20 hours ago -
Set default size for pasted photo to word
by
Cyn
3 days, 2 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
2 days, 14 hours ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
4 days, 1 hour ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 18 hours ago -
Small desktops
by
Susan Bradley
5 hours, 57 minutes ago -
Totally disable Bitlocker
by
CWBillow
2 days, 19 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.