你可以用 Python 中的 COM/ActiveX 做什么?

What can you do with COM/ActiveX in Python?(你可以用 Python 中的 COM/ActiveX 做什么?)
本文介绍了你可以用 Python 中的 COM/ActiveX 做什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我了解到可以使用 COM/ActiveX 在 Crystal Reports 中自动生成月度报告.我没有那么先进来理解这是什么,或者你甚至可以用它做什么.

I've read that it is possible to automate monthly reports in Crystal Reports with COM/ActiveX. I'm not that advanced to understand what this is or what you can even do with it.

我也用 Excel 做了很多工作,看起来你也使用 COM/ActiveX 来与它交互.

I also do a lot of work with Excel and it looks like you also use COM/ActiveX to interface with it.

有人能解释一下这是如何工作的吗?也许可以提供一个简短的例子?

Can someone explain how this works and maybe provide a brief example?

推荐答案

首先你要安装精彩的pywin32 模块.

First you have to install the wonderful pywin32 module.

它提供 COM 支持.您需要运行 makepy 实用程序.它位于 C:...Python26Libsite-packageswin32comclient.在 Vista 上,它必须以管理员权限运行.

It provides COM support. You need to run the makepy utility. It is located at C:...Python26Libsite-packageswin32comclient. On Vista, it must be ran with admin rights.

此实用程序将显示所有可用的 COM 对象.你可以找到你的,它会为这个对象生成一个 python 包装器.

This utility will show all available COM objects. You can find yours and it will generate a python wrapper for this object.

包装器是在 C:...Python26Libsite-packageswin32comgen_py 文件夹中生成的 python 模块.该模块包含 COM 对象的接口.文件的名称是 COM 唯一 ID.如果您有很多文件,有时很难找到合适的.

The wrapper is a python module generated in the C:...Python26Libsite-packageswin32comgen_py folder. The module contains the interface of the COM objects. The name of the file is the COM unique id. If you have many files, it is sometimes difficult to find the right one.

之后,您只需调用正确的接口即可.太神奇了:)

After that you just have to call the right interface. It is magical :)

一个简单的excel例子

A short example with excel

import win32com.client

xlApp = win32com.client.Dispatch("Excel.Application")
xlApp.Visible=1

workBook = xlApp.Workbooks.Open(r"C:MyTest.xls")
print str(workBook.ActiveSheet.Cells(i,1))
workBook.ActiveSheet.Cells(1, 1).Value = "hello"                
workBook.Close(SaveChanges=0) 
xlApp.Quit()

这篇关于你可以用 Python 中的 COM/ActiveX 做什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)