vote up 1 vote down star

How to call a javascript file (.js) via Excel VBA?

flag
Some explanation of what you want to do behind the scenes would be really helpful. – Tomalak Dec 4 '08 at 16:08

4 Answers

vote up 1 vote down

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.

link|flag
vote up -1 vote down

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.

For Each objIE In objInstances

    On Error Resume Next
    sName = objIE.FullName

    On Error GoTo ErrHandler

    If UCase(Right(sName, 12)) = "IEXPLORE.EXE" Then '/// it's internet explorer not windows explorer.
       Call objIE.Document.parentWindow.execScript("addSpan('Welcome','Nitheen')", "javascript")
    End If

    sName = ""
Next

End If Exit Sub

ErrHandler: MsgBox Err.Description

End Sub

Regards, Nitheen Rao 9881154349 nithinshiriya@gmail.com

link|flag
vote up -1 vote down

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.

link|flag
vote up 0 vote down

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:

oIE.Document.frmMain.param1.Value = 5
oIE.Document.frmMain.param2.Value = "6"
oIE.Document.frmMain.submit.click ' this line will call the JavaScript function

HTML:

<div id="submit" > <a href="javascript:doAction();">Do Action</a></div>

<script>
function doAction()
{
    // do whatever the code should do
}
</script>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.