search
HomeWeb Front-endJS TutorialDLL ActiveX control WEB page call example_javascript skills

1. Overview
Due to the needs of the project, I started to learn and research VC, DLL and ActiveX controls. I found a lot of information online, but none was available or there was no example that could be understood and run. No way, just do your own research. Hard work pays off, and you will eventually achieve success. Haha, now I have summarized my own learning and dedicated it to those who need it.
DLL (dynamic link library): divided into WIN32 DLL and MFC DLL
ActiveX: divided into ATL control and MFC control (also a DLL)
WEB: JAVASCRIPT call-> ActiveX call-> DLL Completes the addition operation and returns the value, which is displayed on the page.
2. Development (VS2008)
1. DLL library writing:
File -> New -> WIN32 console -> Fill in the project name -> Select DLL -> Empty project -"Finish.
(1) In the solution panel, add a header file testdll.h, content:
Copy the code The code is as follows ; port )
#endif
//extern "C" tells the compiler that this part can be used in C/C.
extern "C"
{
DECLDIR int Add( int a, int b );
DECLDIR void Function( void );
}
#endif


(2) In the solution panel, add an implementation file testdll.cpp, content:




Copy the code

The code is as follows :
#include #define DLL_EXPORT #include "testdll.h" extern "C" { // The main thing here Use the ADD method.
DECLDIR int Add( int a, int b )
{
return( a b );
}
DECLDIR void Function( void )
{
std::cout < ;}
}


(3) Optional. Create a new WIN32 console class and test this DLL.
File -> New -> WIN32 Console -> Fill in the project name -> Select the console program -> Empty project -> Complete.
In the solution panel, add an implementation file loaddll.cpp content:



Copy the code


The code is as follows:
{
AddFunc _AddFunc;
FunctionFunc _FunctionFunc;
cout // L means to use the UNICODE character set, which must be consistent with the character set of the project.
HINSTANCE hInstLibrary = LoadLibrary(L"E:\Project\VS\LoadDll\Release\TestDll.dll");
if (hInstLibrary == NULL)
{
cout FreeLibrary(hInstLibrary);
}else{
cout }
_AddFunc = (AddFunc)GetProcAddress(hInstLibrary, "Add");
_FunctionFunc = (FunctionFunc)GetProcAddress(hInstLibrary, "Function");
if ((_AddFunc == NULL) || (_FunctionFunc == NULL))
{
FreeLibrary(hInstLibrary);//Release
}else{
cout }
cout _FunctionFunc(); //
cin.get (); // Get focus so that the program will not flash by.
FreeLibrary(hInstLibrary);//After calling, release the memory.
return(1);
}


2. ActiveX control implementation:
Here we choose ATL control implementation instead of MFC ActiveX.
File -> New -> ATL Project -> Fill in the project name ("FROMYANTAI") -> Select the dynamic link library (DLL) -> Complete.
After completion, many header H files and CPP implementation files will be generated in the "Solution Explorer" on the right. These are the default and do not need to be modified.
(1) Add an ALT simple object: Click the project name (the name just given) with the mouse and select - "Add class -" select ATL simple object.
Next step, give a name: "ytiicrj" -> Next step: Leave everything else unchanged, in support, select "Connection Point" and "IE Object Support" -> Complete.
The next step is to add a method to "ytiicrj" so that it can be called by the WEB page. Select "iytiicrj" in "Class View" (there is a gray key icon), right-click and add -> Add method. Name the method "GetContent" -"Select IN for parameter attributes, select LONG for parameter type, parameter name A -"Add; continue; select IN for parameter attributes, select LONG for parameter type, parameter name B -"Add; continue; select OUT and parameter attributes RETVAL, select LONG* for parameter type and parameter name out –》Add---》Click to complete.
This adds one (in the last line) to the ytiicrj.H header file:
STDMETHOD(GetContent)(LONG a, LONG b, LONG* out);
And in the ytiicrj.CPP file Added an implementation class:
Copy code The code is as follows:

STDMETHODIMP CCaluNumCtrl::GetContent( LONG a, LONG b, LONG* out)
{
// TODO: Add implementation code here
return S_OK;
}

(2), in In the ytiicrj.H file, call the DLL class library. The code is as follows:
// CaluNumCtrl.h: Statement of ytiicrj The bold part is the specific implementation, and the others are untouched.
Copy code The code is as follows:

#pragma once
#include "resource.h " // Main symbol
#include // Add
#include "AtlActiveX_i.h"
#include "_ICaluNumCtrlEvents_CP.h"
#if defined(_WIN32_WCE) && ! defined(_CE_DCOM) && !defined(_CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA)
#error "Single-threaded COM objects are not properly supported on Windows CE platforms (such as Windows Mobile platforms that do not provide full DCOM support). Define _CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA to force ATL to support the creation of single-threaded objects. COM object implementation and allows the use of its single-threaded COM object implementation. The threading model in the rgs file has been set to "Free" because this model is the only threading model supported by non-DCOM Windows CE platforms. "
#endif
// ytiicrj
class ATL_NO_VTABLE Cytiicrj:
//Add a line: Security prompt is removed, -- when running the browser call, no security question will be prompted.
public IObjectSafetyImpl,
public IConnectionPointContainerImpl,
public CProxy_ICaluNumCtrlEvents ,
public IObjectWithSiteImpl,
public IDispatchImpl
{
public:
//The following three lines of implementation definition.
typedef int (*AddFunc)(int,int); //Type definition, corresponding to the DLL ADD method. Func is customized and can be written as you wish.
HINSTANCE hInstLibrary;
AddFunc _AddFunc; //Class mapping
Cytiicrj()
{
//Start calling the DLL for calculation.
hInstLibrary = LoadLibrary(L"TestDll.dll");//Place the written DLL file in the directory generated by this project
if (hInstLibrary == NULL)
{
FreeLibrary( hInstLibrary);//Resource release
}else{
}
//Call the method and return the method handle.
_AddFunc = (AddFunc)GetProcAddress(hInstLibrary, "Add");
}
DECLARE_REGISTRY_RESOURCEID(IDR_CALUNUMCTRL)
BEGIN_COM_MAP(Cytiicrj)
COM_INTERFACE_ENTRY(ICaluNumCtrl)
COM_INTERFACE_ENTRY(IDispatch)
COM_INTERFACE_ENTRY(IConnectionPointContainer)
COM_INTERFACE_ENTRY(IObjectWithSite)
//Add a line: Disable the security prompt, -- when running the browser call, no security questions will be prompted.
COM_INTERFACE_ENTRY(IObjectSafety)
END_COM_MAP()
BEGIN_CONNECTION_POINT_MAP(Cytiicrj)
CONNECTION_POINT_ENTRY(__uuidof(_ICaluNumCtrlEvents))
END_CONNECTION_POINT_MAP()
DECLARE_PROTECT_FINAL_CONSTRUCT()
HRESULT FinalConstruct()
{
return S_OK;
}
void FinalRelease()
{
FreeLibrary(hInstLibrary);
}
public:
STDMETHOD(GetContent)(LONG a, LONG b, LONG* out);
};
OBJECT_ENTRY_AUTO(__uuidof(CaluNumCtrl), Cytiicrj)


(3) Go back to the ytiicrj.PP file and add the implementation code as follows:
Copy the code The code is as follows:

STDMETHODIMP CCaluNumCtrl::GetContent(LONG a, LONG b, LONG* out)
{
// TODO: Add implementation code here
int sum = this-> ;_AddFunc(static_cast(a),static_cast(b));
*out = static_cast(sum);
this->_AtlFinalRelease();
return S_OK ;
}

(4) Generate DLL:
This step is very simple, select Release mode, click on the project to generate (it will prompt you to select REG32 registration, then select it). This generates a lot of files in the Release directory, and what we want is a DLL file.
3. DLL and ATL ActiveX control DLL are packaged as CAB files:
For example: after generating test.CAB, the WEB page will prompt for download and installation.
(1) First define the setup.inf file: it describes the downloaded content and target directory as well as the version number and corresponding DLL file. This needs to be written manually. My content is as follows (please modify the name accordingly):
Copy the code The code is as follows:

[version]
; version signature (same for both NT and Win95) do not remove
signature="$CHICAGO$"
AdvancedINF=2.0
[Add.Code]
AtlActiveX.dll=AtlActiveX.dll
TestDll.dll=TestDll.dll
setup.inf=setup.inf
[install.files]
AtlActiveX.dll=AtlActiveX.dll
TestDll.dll=TestDll.dll
setup.inf=setup.inf
[AtlActiveX.dll]
clsid={4AE870B5-C7FB-4171-A47E-7F57AFD86F67}
file-win32-x86 =thiscab
FileVersion=1,0,0,1
DestDir=11
RegisterServer=yes
[TestDll.dll]
file-win32-x86=thiscab
DestDir=11
FileVersion=1,0,0,1
RegisterServer=yes
[setup.inf]
file=thiscab
[RegisterFiles]
%AtlActiveX.dll
; end of INF file

(2) Integrate resources:
Put all the DLLs used in one directory including the setup.inf file, and then run: IExpress command to generate the CAB package .
After running, select the first, next, select the third, next, add files (select your DLL and INF files), next, select an output directory and create a CAB file name, then select Second option, next step, select the second option and then OK. This generates a CAB file.
(3) The WEB page calls the ActiveX control to perform addition operations:
Write a test.htm web page and put the CAB file in a directory. The content of test.htm is as follows:
Copy code The code is as follows:



New Page








Description: codeBase="test .CAB#version=9,0,0,1" codeBase represents the relative or absolute path of the file; version represents the version number. If this number is the same as the version number of the INF file, then the page will not be downloaded the second time, otherwise every time downloaded every time. CLSID is the serial number generated by the ActiveX project, which can be found in the *.rgs file of the project.
Okay. All steps are completed. Now you run test.htm, the ActiveX control is prompted, you choose to allow it, and then you can call the addition operation.
This is just a simple example. In the DLL, you can implement your own application.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Nvgpucomp64.dll导致Windows PC游戏崩溃;Nvgpucomp64.dll导致Windows PC游戏崩溃;Mar 26, 2024 am 08:20 AM

如果Nvgpucomp64.dll导致游戏频繁崩溃,这里提供的解决方案可能会对您有所帮助。这种问题通常是由于过时或损坏的显卡驱动程序、游戏文件损坏等原因引起的。修复这些问题可以帮助您解决游戏崩溃的困扰。Nvgpucomp64.dll文件与NVIDIA显卡关联。当这个文件崩溃时,你的游戏也会崩溃。这通常发生在《LordsoftheFallen》、《LiesofP》、《RocketLeague》和《ApexLegends》等游戏中。Nvgpucomp64.dll使WindowsPC上的游戏崩溃如果N

activex部件不能创建对象如何解决activex部件不能创建对象如何解决Jan 24, 2024 pm 02:48 PM

解决办法:1、检查拼写和路径;2、添加对组件的引用;3、检查注册表;4、以管理员身份运行;5、更新或修复Office;6、检查安全软件;7、使用其他版本的组件;8、查看错误信息;9、查找其他解决方案。详细介绍:1、检查拼写和路径:确保对象的名称和路径没有拼写错误,且文件确实存在于指定的路径中;2、添加对组件的引用等等。

Windows系统目录CoreMessaging.dll文件丢失找不到问题解析Windows系统目录CoreMessaging.dll文件丢失找不到问题解析Feb 11, 2024 pm 11:42 PM

很多的用户们在利用电脑玩游戏的时候会出现提示coremessaging.dll丢失的情况,相信很多的用户们第一时间都会觉得软件或者是游戏的问题,其实不是的,这是因为电脑缺少了dll文件,用户们可以去下载coremessaging.dll文件就可以了。下面就让本站来为用户们来仔细的介绍一下Windows系统目录CoreMessaging.dll文件丢失找不到问题解析吧。Windows系统目录CoreMessaging.dll文件丢失找不到问题解析1、下载CoreMessaging.dll文件2、将

activex控件是什么意思activex控件是什么意思Sep 23, 2021 am 11:00 AM

ActiveX控件指的是“插件程序”,是用于互联网的很小的程序,是一种可重用的软件组件,通过使用 ActiveX控件,可以很快地在网址、台式应用程序、以及开发工具中加入特殊的功能。

win7系统丢失libcurl.dll怎么解决?win7找不到libcurl.dll文件解决方法win7系统丢失libcurl.dll怎么解决?win7找不到libcurl.dll文件解决方法Feb 12, 2024 am 08:15 AM

win7系统丢失libcurl.dll怎么解决?一般都是dll文件都会导致部分程序无法正常进行使用,面对这个问题,很多用户都不知道应该如何解决,针对这个情况,今日小编就来和广大用户们分享详细的解决方法,希望今日win7教程能够给广大的用户们带来帮助,一起来了解看看吧。win7系统丢失libcurl.dll解决方法1、下载libcurl.dll文件。2、下载好后将文件放入相应的文件夹,这里分32位和64位操作系统路径如下:32位Win7操作系统将文件直接复制到C:\Windows\SYSTEM32

vcruntime140_1.dll无法继续执行代码怎么办?vcruntime140_1.dll无法继续执行代码怎么办?Feb 11, 2024 pm 05:00 PM

vcruntime140_1.dll是VisualC运行时库的一个组成部分,不少的用户们在使用MicrosoftVisualStudio进行开发时出现了vcruntime140_1.dll无法继续执行代码的错误,那么用户们遇到这种问题要怎么办?下面就让本站来为用户们来仔细的介绍一下vcruntime140_1.dll无法继续执行代码如何解决方法吧。vcruntime140_1.dll丢失的原因卸载VisualC运行时库:误操作或升级VisualC导致运行时库丢失。病毒感染:恶意软件删除或损坏vc

Win7启动游戏提示计算机中丢失Skidrow.dll怎么办?Win7启动游戏提示计算机中丢失Skidrow.dll怎么办?Feb 15, 2024 pm 02:12 PM

很多用户喜欢使用电脑玩游戏,最近有Win7系统的用户反映在启动游戏的时候,遇到了系统提示计算机中丢失Skidrow.dll文件无法启动的弹窗,没办法正常加载游戏,这是怎么回事呢?针对这一问题,本篇带来了详细的解决方法,分享给大家,一起看看吧。Win7启动游戏提示计算机中丢失Skidrow.dll怎么办?1、下载Skidrow.dll文件。2、解压该文件夹,然后将Skidrow.dll文件复制到系统目录下。32位系统:C:\WINNT\System3264位系统:C:\Windows\SysWOW

加载dll失败怎么办加载dll失败怎么办Jan 25, 2024 pm 05:51 PM

解决办法:1、重新下载或从可靠的来源获取DLL文件;2、检查DLL文件的依赖项;3、确保使用的是正确的DLL版本;4、注册DLL文件;5、检查防火墙和安全软件设置;6、联系软件供应商或技术支持。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)