Can I call a js script from Access?

W

wildman

I tried this but it doesn't seem to work. I do see a command windows open
but the script does not execute.


Dim shell, fso
Set shell = CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
shell.Run "D:\database\testupdate2.js"
 
Top