I'm trying to find a way to do the equivalent of
comm = window.event.srcElement._command;
if(comm){
xlApp = new ActiveXObject("Excel.Application");
var app = xlApp.DDEInititate(".....", "....");
xlApp.DDEExecute(app,comm);
xlApp.DDETerminate(app);
app = "";
xlApp.Quit();
}
without the use of an activeX object. Are there any frameworks out there that can accomplish this?