-
I need to pass arguments to a Excel VBA code from JavaScript of HTA.
- I can successfully call VBA function, but unable to pass string arguments correctly.
- JavaScript function can pass different string arguments.
- Below is code in simple and demo form.
- Excel-VBA code
Sub subTest(strName As String) MsgBox strName End Sub
HTA code with Javascript
<!DOCTYPE html>
<html>
<head>
<title>HTA</title>
<hta:application
id="oHta"
applicationname="htaNavi"
border="1"
borderstyle = normal
contextmenu = "yes"
caption="Navigator"
sysmenu="yes"
WINDOWSTATE="maximize"
>
</head>
<body>
<input type="button" value="testing" onclick="funRun('testng string')" />
<input type="button" value="testing second" onclick="funRun('testng')" />
</body>
<script>
var objExl;
var objWb;
var objExl =new ActiveXObject("Excel.Application");
objExl.Visible = true;
var objWb = objExl.Workbooks;
var strpath = '\path\testing_excel_web.xls';
objWb.Open(strpath);
function funRun(strName)
{
alert(strName);
objWb.Application.Run('testing_excel_web.xls!subTest(strName)');
}
</script>
</html>
I can call subTest, but message box populates strName as string but not 'testing string' as text.
I’m thinking you want:
This way, the value of the variable
strNameis concatenated to the command you are attempting to run.I know nothing about this calling of a VBA function, so I’m not sure if you need the
"around thestrNamelike I provided or not.In addition, to be safe, in case your
strNamevalue contains", you should use this:Hopefully with this, the value of
strNamecould beand it will still work.
The point is that if the string contains
", the Javascript would/could fail. If it would absolutely never contain", then forget about it. But I think it’s needed since any"in the value ofstrNamewill break the passing of it as a parameter.