Python Activex组件 Python 开发Activex组件方法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Python Activex组件 Python 开发Activex组件方法

  2021-03-18 我要评论
想了解Python 开发Activex组件方法的相关内容吗,在本文为您仔细讲解Python Activex组件的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Python,Activex组件,下面大家一起来学习吧。
使用win32com模块开发window ActiveX的示例:(如果你还没有装win32com模块的话,请到http://python.net/crew/skippy/win32/Downloads.html下载)。
复制代码 代码如下:

# SimpleCOMServer.py

class PythonUtilities:
_public_methods_ = ['SplitString']
_reg_progid_ = "Python.Utilities"
_reg_clsid_ = "{A6688635-62F5-41cb-AF54-CBA84C2F0F86}"

def SplitString(self, val):
return "Hello world ", val

if __name__ == '__main__':
print "Registering COM server..."
import win32com.server.register
win32com.server.register.UseCommandLine(PythonUtilities)

在console下运行:python SimpleCOMServer.py

在HTML页面中调用该Activex组件:
复制代码 代码如下:


window.onload = function(){
    var obj = new ActiveXObject("Python.Utilities");

    alert(obj.SplitString("Hel"));
}

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们