文章索引~ActiveX
阿新 • • 發佈:2018-11-19
官網:
書籍:
概念:
- "Class ID", "{7a4cffd8-cbcd-4ae9-ae7e-343e1e5710df}"
- "Interface ID", "{6fb035bf-8019-48d8-be51-ef05427d8994}"
- "Events ID", "{c42fffdf-6557-47c9-817a-2da2228bc29c}"
博文:
A Complete ActiveX Web Control Tutorial
OCX控制元件開發及WEB Javascript如何使用OCX控制元件 : 通俗易懂
IE設定:
“工具-選項-安全-自定義級別”中“ActiveX控制元件和外掛”.=
工具 – Internet選項 – 高階標籤 – 在安全分類下面,允許活動內容在我的計算機上的檔案中執行.
(登錄檔FEATURE_LOCALMACHINE_LOCKDOWN)
支援的客戶端:
Internet Explorer
Microsoft ActiveX Control Test Container
Microsoft Visual Studio 6.0
Microsoft Visual Studio.NET/2003
Microsoft Visual Basic 6.0
MFC- and ATL-based containers
Sybase PowerBuilder
ActiveQt based containers
IE 網頁測試模板:
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<object id="MyObj"
classid="clsid:145045D5-DC69-4B01-AB4A-82A7AD31E215"
width="500"
height="400">
</object>
<br/>
<input type="button" value="ActiveX About" id="Test" onclick="doTest();">
<script >
function doTest()
{
MyObj.Eat();
}
</script>
</body>
</html>