How to open any program on your computer

Noxqss38242

Board Regular
Joined
Sep 15, 2017
Messages
223
Office Version
  1. 2016
Currently I'm trying to use this code:

Private Sub CommandButton1_Click()
Sub Open_Program()

Shell ("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe")

End Sub


HOWEVER, when I run it, I get a "compile error: Expected End Sub" error message.

Just trying to figure out how to launch any program on the computer when knowing the path for it.
 

Attachments

  • 1631728795841.png
    1631728795841.png
    4.5 KB · Views: 9

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
You have two "Sub" lines in a row:
VBA Code:
Private Sub CommandButton1_Click()
Sub Open_Program()
Remove one.

You cannot have start a new "Sub" until you end the previous one with an "End Sub" line.
 
Upvote 0
Solution
You have two "Sub" lines in a row:
VBA Code:
Private Sub CommandButton1_Click()
Sub Open_Program()
Remove one.

You cannot have start a new "Sub" until you end the previous one with an "End Sub" line.
Works now...thanks!
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,860
Members
449,194
Latest member
HellScout

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top