VBA.Interaction.Shell ("msg.exe") = Run-time error '53': File Not found

C

CTB

Using:
Windows 7 Professional x64
MS Excel 2010 (x32)

Hello all,

When I try to use MSG.exe in VBA with VBA.Interaction.Shell, I get "File not found". When I use MSG.EXE from a command window, everything works fine.

Anyone know what is going on? Has anyone come across this? Anyone know how to get this to work or know of a work-around?

Thanks for any help anyone can provide,

CTB
 
G

GS

CTB explained on 4/18/2012 :
Using:
Windows 7 Professional x64
MS Excel 2010 (x32)

Hello all,

When I try to use MSG.exe in VBA with VBA.Interaction.Shell, I get "File not
found". When I use MSG.EXE from a command window, everything works fine.

Anyone know what is going on? Has anyone come across this? Anyone know how
to get this to work or know of a work-around?

Thanks for any help anyone can provide,

CTB

Take a look at using VBA's Shell() function -OR- the ShellExecute() API
function. Note that both require a full path and filename!

Example:
Shell "fullpath\MSG.exe" 'starts MSG app

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion
 

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

Top