2006年07月21日 星期五 22:08
我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦?
2006年07月22日 星期六 00:47
Excel 的事情更建议你用 VBA 来做。不要把 python 当作万能钥匙来用 :-)
2006年07月22日 星期六 09:05
在 06-7-21,FireBird<ygonic at gmail.com> 写道: > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > Python Programming on Win32 这本书里面有介绍
2006年07月22日 星期六 15:17
我觉得你找 Excel 的文档应该能找到,依稀记得 office 里的软件都有编程文档的。就在帮助里 在 06-7-22,makeyunbad<makeyunbad at gmail.com> 写道: > 在 06-7-21,FireBird<ygonic at gmail.com> 写道: > > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > > > > Python Programming on Win32 这本书里面有介绍 > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- Best regrads, IQDoctor
2006年07月22日 星期六 16:34
>>> import win32com.client >>> o = win32com.client.Dispatch("Excel.Application") >>> o.Visible = 1 >>> o.Workbooks.Add()>>> o.Sheets.Add() 有个简单的方法去知道如何操作excel:先用excel把要进行的操作录成宏,再看生成的vba代码都用了什么函数 在06-7-22,IQDoctor <huanghao.c at gmail.com> 写道: > > 我觉得你找 Excel 的文档应该能找到,依稀记得 office 里的软件都有编程文档的。就在帮助里 > > 在 06-7-22,makeyunbad<makeyunbad at gmail.com> 写道: > > 在 06-7-21,FireBird<ygonic at gmail.com> 写道: > > > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > > > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > > > > > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > > > > > > > Python Programming on Win32 这本书里面有介绍 > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > Best regrads, > IQDoctor > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- Ocean mail: chocean at gmail.com homepage: www.oceanisland.com.cn -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060722/85319252/attachment.html
2006年07月22日 星期六 18:26
微软的接口,当然是查MSDN了。 On 7/21/06, FireBird <ygonic at gmail.com> wrote: > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? >
2006年07月22日 星期六 21:40
干吗用python折腾这个呀? On 7/22/06, swordsp <sparas2006 at gmail.com> wrote: > > 微软的接口,当然是查MSDN了。 > > On 7/21/06, FireBird <ygonic at gmail.com> wrote: > > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060722/e5d8e90d/attachment.html
2006年07月24日 星期一 08:05
Maybe WorkBook.NewSheet can. Please try it. -Jalen ----- Original Message ----- From: "FireBird" <ygonic at gmail.com> To: <python-chinese at lists.python.cn> Sent: Friday, July 21, 2006 10:08 PM Subject: [python-chinese] 如何用python增加一个Excel的sheet > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > -------------------------------------------------------------------------------- > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese
2006年07月24日 星期一 22:02
VBA may be a more efficient choice 在06-7-24,Jalen Wang <yueyue_hslcn at 163.com> 写道: > > > Maybe WorkBook.NewSheet can. > Please try it. > > -Jalen > > ----- Original Message ----- > From: "FireBird" <ygonic at gmail.com> > To: <python-chinese at lists.python.cn> > Sent: Friday, July 21, 2006 10:08 PM > Subject: [python-chinese] 如何用python增加一个Excel的sheet > > > > 我现在在用win32com来操作Excel,但是在网上找到的资料中都没有提到如何用win32com来 > > 对Excel增加一个sheet。请问有哪位朋友知道有没有这个函数(我想应该是有的),直到函数名称吗? > > > > 另外:对于COM的使用,不知道有没有熟悉的人,我想知道如何去查看一个Com到底提供了哪些函数?否则,不知道函数名的话,使用起来岂不是相当的麻烦? > > > > > > -------------------------------------------------------------------------------- > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060724/3a3e5ae6/attachment.html
Zeuux © 2025
京ICP备05028076号