Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Project and external application

Status
Not open for further replies.

yashr

Programmer
Mar 1, 2005
17
0
0
US
Hello:

I am trying to customize Project Guide (html and javascript). I need to have
a link to an external application(exe). The shell command works fine on a
regular html page. But, when I add it to Project Guide, I am getting
'Permission Denied'.
Any suggestions/help is appreciated? We are using Project 2003/server.
The code I am using is


var oShell = new ActiveXObject("Shell.Application");
var commandtoRun ="C:\Test_VB.exe";
var commandParms = "/APP \"Test\"";
oShell.ShellExecute(commandtoRun, commandParms, "", "open", "1");

Thanks
Yashr
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top