C
Chris Smith
Howdy,
I am trying to fire the excel spreadsheet event
sheetchange for my spreadsheet object, but not in VBScript
but JScript.
I am able to make this code work perfectly in VBScript
with this:
Sub Spreadsheet1_SheetChange(Sh, Target)
msgbox "whoah"
End Sub
but for some reason this jscript command:
function Spreadsheet1_SheetChange(Sh, Target) {
alert("Whoah");
}
does not work.
Lil' help?
Thanks
Chris Smith
I am trying to fire the excel spreadsheet event
sheetchange for my spreadsheet object, but not in VBScript
but JScript.
I am able to make this code work perfectly in VBScript
with this:
Sub Spreadsheet1_SheetChange(Sh, Target)
msgbox "whoah"
End Sub
but for some reason this jscript command:
function Spreadsheet1_SheetChange(Sh, Target) {
alert("Whoah");
}
does not work.
Lil' help?
Thanks
Chris Smith