Want to shell(myprogram)...

I am a little lost...

I wrote a program to open Outlook templates - I know a can do this in VBA, but don't want to set up on every computer so I included the templates as content in a program.

Now... I want to shell my program from Outlook VBA -

I would expect something like:

shell("c:\program files\My Company\tempmonster.exe")

But I can't find an executable - what happens to my program after I've installed it, and how do I shell to it



Answer this question

Want to shell(myprogram)...

  • domw001

    To find the path of your installed .net program look for it under documents and settings\your user name\Local Settings\Apps

  • Steve Brozosky

    Thanks Dman1, congratulations on 3000 posts!

    I found some stuff there, but no executable. My current best solution is to copy the files from ...my project\bin\debug directory.

    How do dotnet apps execute


  • Want to shell(myprogram)...