birdprince wrote:
I have implemented a COM in C++,buy i don't know how to use this COM
in python.
For example: the COM's ProgID is "MyCOM1.AdvMethod".this COM have two
interfaces,the default interface's name is IAdvMethod,the second
interface's name is IBasicMethod.
I use this method to call t
birdprince wrote:
I have implemented a COM in C++,buy i don't know how to use this COM
in IronPython.
The technical details of IronPython are quite different from CPython.
To talk COM, you have to use a magic subsystem called "Interop" that the
people on this list will probably not know. I
birdprince wrote:
I have implemented a COM in C++,buy i don't know how to use this COM
in python.
For example: the COM's ProgID is "MyCOM1.AdvMethod".this COM have two
interfaces,the default interface's name is IAdvMethod,IAdvMethod have a method
which name is Add,the second interface's name i
Dear group:
My company makes use of Active Directory to determine what rights a given
user has in an application system. If the user is a member of a certain
group, then (s)he has the right to perform some set of functions. For
example, if VCOLE is a member of WCPO-CREATE then I can create new purc
hello, everybody
perhaps somebody already ask this question but a i dont now the answer
at what year was pythonwin develop, or at what year was his first release?
is Mark Hammond the creator of pythonwin or was someone else?
who help at the develoment of pythonwin?
i hope some can help me asw
Hi all,
I'm happy to announce the release of pywin32 build 212
This is a fairly minor release, with fixes to the few issues found since
build 211, plus a few other minor additions (as usual, many contributed by
Roger Upole.) The full change notes are at
https://sourceforge.net/project/shownotes
Hello!
I'm happy to announce the release of pywin32 build 212
I'm happy to thank Mark, for that.
Michel Claveau
___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32
There is a bug with py2exe when (at least under windows) when importing
email
# example testmime.py
import email
msg = email.MIMEText.MIMEText("dsafdafdasfA")
print "ok"
1. Save the text above and setup as testmime.py
2. Run it and u can see "ok"
3. Create setup.py and run : python setup.py py
Hi,
After some debugging, i found the solution is to :-
import email
import email.mime.text
import email.iterators
import email.generator
import email.utils
Marcus.
Marcus.CM wrote:
There is a bug with py2exe when (at least under windows) when
importing email
# example testmime.py
import e