Is it possible at all? If not any ideas how to do it?
- Code: Select all
function callMatlab(sCommandStr) {
var MatLab = new ActiveXObject("matlab.application");
MatLab.Execute (sCommandStr)
}
var sCommandStr = ""
if (UltraEdit.document[1].isSel()){
sCommandStr = UltraEdit.activeDocument.selection;
callMatlab(sCommandStr);
}
Best Regards
Max

