How to call a javascript file (.js) via Excel VBA?
|
|
|||
|
|
|
All the previously suggested approaches sound hacky to me. For a more reliable solution, embed the Javascript in a COM component via Windows Script Components, and call the Javascript-based COM component as you would any other COM component. |
||
|
|
|
|
Sub VBAtoJS() Dim objInstances As Object, objIE As Object Dim sName As String Set objInstances = CreateObject("Shell.Application").Windows If objInstances.Count > 0 Then '/// make sure we have instances open.
End If Exit Sub ErrHandler: MsgBox Err.Description End Sub Regards, Nitheen Rao 9881154349 nithinshiriya@gmail.com |
||
|
|
|
|
You mean through windows scripting host? You can shell (use the shell command) out to wscript.exe with the name of the .js file. But this javascript object model won't be like the one you get in the browser. It would be helpful if you told us what the javascript was supposed to do. |
||
|
|
|
|
Hi, I don't think that there is a direct way to run JavaScript code in VBA. What you could try to do is to embed the JavaScript code in an HTML form which you could open in a (hidden) browser control. Then fill the form controls via the DOM of the browser control and submit the form. The submit triggers the JavaScript function that you want to call. Sample (not tested): VBA:
HTML:
|
||
|
|
