Example of assigning values ​​to ActiveX control properties by param name in a web page

Example of assigning values ​​to ActiveX control properties by param name in a web page

Copy code
The code is as follows:

<HTML>
<HEAD>
<TITLE>Test ActiveX</TITLE>
<OBJECT ID="TestCtrl" NAME="<span style="font-family:Arial,Helvetica,sans-serif">TestCtrl</span><span style="font-family:Arial,Helvetica,sans-serif">"</span>
CODEBASE="calc.CAB#version=1,0,0,1"
CLASSID="clsid:CDF1D789-F8A3-48F2-B0DE-0D72F2D89F76">
<PARAM NAME="downpath" VALUE="123456" />
</OBJECT>
<script language="javascript">
function doTest()
{
alert(<span style="font-family:Arial,Helvetica,sans-serif">TestCtrl</span><span style="font-family:Arial,Helvetica,sans-serif">.</span><span style="font-family:Arial,Helvetica,sans-serif">downpath</span><span style="font-family:Arial,Helvetica,sans-serif">);</span>
}
</script>
</HEAD>
<BODY>
<input type="button" value="Get left time" id="btnOK" onclick="doTest();"></input>
</BODY>
</HTML>

If the created attribute type is BSTR and the variable name is downpath, add the following code:

When creating an attribute, select the member variable method, and then add the following code in the code below

Copy code
The code is as follows:

void COCXTestCtrl::DoPropExchange(CPropExchange* pPX)
{
ExchangeVersion(pPX, MAKELONG(_wVerMinor, _wVerMajor));
COleControl::DoPropExchange(pPX);
// TODO: Call PX_ functions for each persistent custom property.
PX_String(pPX, _T("downpath"), m_downpath, _T(""));
}

<<:  How to implement multiple parameters in el-dropdown in ElementUI

>>:  CSS isolation issue in Blazor

Recommend

JavaScript canvas to achieve mirror image effect

This article shares the specific code for JavaScr...

How to install JDK8 on Windows

1. Download: http://www.oracle.com/technetwork/ja...

Steps for installing MySQL 8.0.16 on Windows and solutions to errors

1. Introduction: I think the changes after mysql8...

Detailed explanation of the correct way to open em in CSS

Why do we say “usually 1em=16px”? The default tex...

Pure HTML and CSS to achieve JD carousel effect

The JD carousel was implemented using pure HTML a...

MySQL 8.0.15 installation and configuration tutorial under Win10

What I have been learning recently involves knowl...

Detailed explanation of Strict mode in JavaScript

Table of contents Introduction Using Strict mode ...

Detailed explanation of the mechanism and implementation of accept lock in Nginx

Preface nginx uses a multi-process model. When a ...

A Preliminary Study on JSBridge in Javascript

Table of contents The origin of JSBridge The bidi...

Mac VMware Fusion CentOS7 configuration static IP tutorial diagram

Table of contents Install CentOS7 Configuring Sta...

Implementation steps for installing FTP server in Ubuntu 14.04

Table of contents Install Software Management Ano...

How to import and export Cookies and Favorites in FireFox

FireFox is a commonly used browser with many exte...

Vue uses mixins to optimize components

Table of contents Mixins implementation Hook func...