javascript vs VB Script
-
Set wshell = CreateObject("WScript.Shell") wshell.Run "any_thing_to_run" the above two lines are vbscript code . can any please help and tell me their javascript equivalent code. Be FaithFull To Your Work.
-
Set wshell = CreateObject("WScript.Shell") wshell.Run "any_thing_to_run" the above two lines are vbscript code . can any please help and tell me their javascript equivalent code. Be FaithFull To Your Work.
alert("I am an idiot and I keep asking the same question over and over, because I don't believe the answer people keep giving me.") sheesh. Christian Graus - Microsoft MVP - C++
-
Set wshell = CreateObject("WScript.Shell") wshell.Run "any_thing_to_run" the above two lines are vbscript code . can any please help and tell me their javascript equivalent code. Be FaithFull To Your Work.
Hi: Try this:
var objShell = new ActiveXObject("WScript.Shell"); objShell.Run("notepad");
Deepak Kumar Vasudevan Personal Web: http://vdeepakkumar.netfirms.com/ I Blog At: http://deepak.blogdrive.com/