Access Macro RunApp

G

Guest

Hi,
I want to create a macro that could open a specific folder (with windows
explorer). I went to create a new macro, and chose RunApp under 'Action'. In
the command line I type the address (eg. C:\Windows). But this did not work.
The error message says Microsoft Access could not invoke the application
using the RunApp Action.

Is that because windows explorer cannot be ran from an Access macro? or do I
need to add something in the command line.
 
S

Steve Schapel

Charles,

Typing this in the Command Line argument of the RunApp macro...
"C:\Windows\explorer.exe"
.... will launch Windows Explorer.

To open at a particular folder, like this...
"C:\Windows\explorer.exe" "C:\Myfolder\"
 
B

bob

You might be safer just saying explorer.exe "c:\myfolder\" since the
windows path is not always c:\windows. My testing shows explorer.exe is
sufficient without a fully qualified path.

Bob Galway
www.bbg-enterprises.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

RunApp Access macro command 1
RunApp with a reference to a non EXE command line argument 10
RunApp 1
Runapp with Sendkeys 2
runapp problems 2
RunApp Macro 2
RunApp question 2
RunApp giving new error 2

Top