VBA to open cmd window:

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
Right now whenever i want to run anything I click on Start > type CMD and hit enter.

How can vba directly open up "cmd" window.
I tried this but nope...it does not work:)
Code:
[/FONT]
[FONT=Courier New]Shell:Cmd[/FONT]
[FONT=Courier New]
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
If all else fails you can probably extract what you need from something like this (the fruit of two seconds on Google).
 
Upvote 0
This should open the cmd window
Code:
ret = Shell("cmd.exe")
Though I'm not sure why you want to do that from VBA - what is it you want to use it for?
 
Upvote 0
Norie, that works thanks. There is no purpose as such for now but I just wanted to know how does vba open other .exe windows etc.

Thanks for the help!!!
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,850
Members
452,948
Latest member
UsmanAli786

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