There are so many pre-assumptions when using WIN32OLE
library. Can anyone out there briefly explain the
relation among the classes and modules in it?
Thanks,
Li
···
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com
WIN32OLE basically provides an interface to the OLE type libraries in
Windows, so you're going to want to be able to see what classes,
methods, and properties those libraries provide.
If you plan on doing work with Microsoft Office applications the best
thing to do would be to open an app (Excel, for example), go to Tools
=> Macro => Visual Basic Editor, Then go to View => Object Browser
(make sure you have a document open in the Office app, or nothing will
show up.) There you can see everything available to the object you've
created (i.e. WIN32OLE.new('excel.application')).
There are so many pre-assumptions when using WIN32OLE
library. Can anyone out there briefly explain the
relation among the classes and modules in it?
Thanks,
Li
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com
WIN32OLE basically provides an interface to the OLE type libraries in
Windows, so you're going to want to be able to see what classes,
methods, and properties those libraries provide.
Nate
Hi Nate,
When I read the document about this library I see several classes as
follows
I know WIN32OLE is a big player for this library. But how about the
others? What are their roles and the relation with WIN32OLE? I would
like to someone or you get a very quick introduction.