Re: [python-win32] Python COM

2008-07-31 Thread Tim Golden
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

Re: [python-win32] IronPython COM

2008-07-31 Thread Tim Roberts
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

Re: [python-win32] Python and COM

2008-07-31 Thread Tim Roberts
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

[python-win32] Is this user a member of a given Active Directory group?

2008-07-31 Thread Vernon Cole
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

[python-win32] when was pythonwin develop?

2008-07-31 Thread Emanuel Sotelo
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

[python-win32] pywin32 build 212 released

2008-07-31 Thread Mark Hammond
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

Re: [python-win32] pywin32 build 212 released

2008-07-31 Thread Michel Claveau
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

[python-win32] py2exe bug with email.MIMEText

2008-07-31 Thread Marcus.CM
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

Re: [python-win32] py2exe bug with email.MIMEText

2008-07-31 Thread Marcus.CM
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