Feb 7, 2003 #1 jgos Programmer Sep 27, 2002 38 US Is there a way that I can open a program like notepad from a client side VBScript in a web page?
Feb 12, 2003 #2 Dvarkholm Technical User Sep 5, 2002 17 GB I use: Set WshShell = CreateObject("WScript.Shell" ReturnCode = WshShell.Run ("%windir%\notepad.exe", 1, TRUE) which works fine in MS Dev Env but not when I launch the html file in IE... Upvote 0 Downvote
I use: Set WshShell = CreateObject("WScript.Shell" ReturnCode = WshShell.Run ("%windir%\notepad.exe", 1, TRUE) which works fine in MS Dev Env but not when I launch the html file in IE...