Can I launch a program (.exe) from inside an excel macro? Excel 97.
You can use the Shell function.
You might fare better with a question like this in microsoft.public.excel.programming.

Signature
Regards from Virginia Beach,
Earl Kiosterud
www.smokeylake.com
Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
> Can I launch a program (.exe) from inside an excel macro? Excel 97.
Sub showEXE()
Shell "whatever.exe", vbNormalFocus
End Sub
a924...@yahoo.com wrote:
> Can I launch a program (.exe) from inside an excel macro? Excel 97.