This really should be moved, as the original question doesn't even have anything to do with Visual Basic.

Goh:

I tried to put it as simple as I can.
Code:
var WshShell = new ActiveXObject("wscript.shell");
WshShell.run("C:\\Windows\\system32\\calc.exe");
That will run a program like you asked. You just need to replace this:
Code:
WshShell.run("C:\\Windows\\system32\\calc.exe");
Then it will run any program you want.


Phreak