问题标签 [activexobject]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - JavaScript ActiveXObject
我对 javascript 中的 ActiveXObject 有疑问。我在 Mozila FireFox 6.0.2 中尝试过这段代码
但是错误控制台说 ActiveXObject 是未定义的。之后,我尝试了这个:
但是,错误控制台说:
错误:未捕获的异常:[异常...“安全错误”代码:“1000”nsresult:“0x805303e8(NS_ERROR_DOM_SECURITY_ERR)”位置:“file:///C:/Documents%20and%20Settings/Guest/Desktop/stuff/ html/GML%20to%20JS.html 行:335"]
顺便说一句,我不想只为 SendKeys 使用 ActiveXObject。我需要它来获得更多的东西(比如在文件中写入......)并且,我使用 FireFox 而不是 IE 的原因是 FireFox 支持 HTML5。
javascript - javascript 或 jquery 文件大小
我在网上到处寻找如何在客户端获取文件大小,所以我找到了一些示例,第一个示例是
但不幸的是,它在 ie 中不起作用
所以我找到了这个例子
这应该可以在 ie 中工作,但我听说它有安全问题,我不知道它是否适用于所有浏览器..
所以,我需要知道我可以在javascript客户端使用什么来获取文件大小..例如:来自输入类型文件的文件谢谢你的帮助。
activex - 查找用于嵌入的 ActiveX 对象 ID 的组织列表
我目前正在使用 Real Studio 开发应用程序。有点类似于 Visual Basic,它提供了将 ActiveX 对象嵌入 OLE 容器中的方法。也就是说,我需要一个类似于此 (http://msdn.microsoft.com/en-us/library/ee797043(v=cs.20).aspx) 的可用 ActiveX 组件的字母列表,它为我提供程序 ID 等作为:
“InternetExplorer.Application”
“Excel.Application”
“ShockwaveFlash.ShockwaveFlash”
可以假设一切都是按字面意思命名的(在应用程序本身之后),但在这种情况下我不是在应用程序之后。具体来说,我需要一个用于可编辑 HTML 查看器的 DHTML 控件。一般来说,我希望能够参考这些信息以供将来控制嵌入。
我可能问错了问题,但如果那里有任何读心者,任何帮助将不胜感激。
最好的。
c# - 从 C# WPF 应用程序中的 ActiveX 控件中删除讨厌的 3D 边框
我在 WPF 应用程序的 Windows 窗体主机中使用 Microsoft MapPoint 2011 ActiveX 控件,并尝试删除讨厌的 3D 边框。我已经尝试设置以下属性但没有成功:
有任何想法吗?
javascript - .responseXML() 返回什么对象?
我正在尝试创建一个继承自特定函数返回的对象的原型/类。但我不知道那个物体的名字是什么?
例如,var xhr = XMLHttpRequest();
返回什么对象xhr.responseXML;
?是XMLDocument
吗?或者也许XMLDOM
?
此外,如果我创建对象var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
并调用xmlDoc.load("xmlFile.xml" );
它是否会返回与xhr.responseXML;
?
我正在尝试执行以下操作:
javascript - 如何在使用 Silverlight 调用的 javascript 函数中创建 ActiveXObject
我正在尝试从我的 Silverlight C# 文件中调用 javascript 函数。(能够调用它)。然后我尝试创建 ActiveXObject 对象以便在 javascript 函数中启动记事本。但自动化服务器不允许创建 ActiveXObject 对象。
如何在不启用 Silverlight Web 项目的浏览器外设置的情况下创建 ActiveXObject 对象?
在不启用 OOB 设置的情况下在 Silvleright 中创建 COM 对象的任何其他方式将不胜感激?
javascript - Searching and manipulating Excel data using JavaScript
I have a HTML web form with 5 text inputs and a button calling a JavaScript function. The function as it stands, will open an existing Excel file, find the last populated row, insert a new row below it and put the form values in, one value to each cell. It then saves and exits.
The spreadsheet however has many more than 5 columns, so the function only ever places the data into columns A - E.
What I actually want to do is this:
The spreadsheet may or may not already have data in columns A - G on each row. I want the function to search column B of the existing sheet for the text value of "first" (as defined above). If found, insert the other 4 values in corresponding cells in columns H-K. If not found then insert all 5 values into a new row "first" in Column B and the rest in column H-K.
I've been messing with this for a long time and can't seem to crack it, though I know it can be done.
Any help would be greatly appreciated!
delphi - 使用 CreateOleObject 后释放 OleVariant
这是一个简单的代码:
我们是否需要V := Unassigned
在最后使用代码,或者V
当它存在Test
程序范围时将是免费的?在VB中,您将变量设置为Nothing。我们需要在这里做同样的事情吗?IE:
command-line - 解析 JScript 中需要的 shell 脚本输出
我想执行一个命令并解析 shell 的输出。我在 TestComplete 中使用 JScript。我已经发现我可以使用 WScript.shell 运行命令。但我不知道如何解析我的 JScript 中的输出。有什么提示吗?