[python-win32] IADsGroup not wrapped?

2009-08-03 Thread Arve Knudsen
Hi When requesting the IADsGroup interface from an Active Directory group object, I get a TypeError saying that: 'There is no interface object registered that supports this IID'. Does this mean that pywin32 does not wrap this interface? If so, is this easily fixed? Thanks, Arve

Re: [python-win32] Please suggest me a good Python MAPI module...

2009-08-03 Thread Mike Driscoll
durumd...@gmail.com wrote: Hi! I'm searching a good Python MAPI module... I wanna send many pictures, I wanna split them into 5 MB sized mails, and I wanna see them in default mailer as new mails. The sending is not needed, only mapi call with New mail/Mailto and with attachments. Thanks

Re: [python-win32] MSHTML wrapper class and example using IWebBrowser2

2009-08-03 Thread Gerdus van Zyl
very nice! I was looking at pyjd a while back but didn't like the gtk dependency. Any posibility on porting hulahop to windows? ~Gerdus On Mon, Aug 3, 2009 at 12:22 AM, lkcll...@lkcl.net wrote: hi there, from about a dozen different sources i've managed to put together something similar to

Re: [python-win32] MSHTML wrapper class and example using IWebBrowser2

2009-08-03 Thread Luke Kenneth Casson Leighton
On 8/3/09, Gerdus van Zyl gerdusvan...@gmail.com wrote: very nice! I was looking at pyjd a while back but didn't like the gtk dependency. that's why i based mshtml.py on the Win32 GDI not gtk. Any posibility on porting hulahop to windows? it's tricky as hell - it's a _whopping_ great

[python-win32] PyIADsUser.put_LastName

2009-08-03 Thread Arve Knudsen
Hi Is there any reason for PyIADsUser.put_LastName not being implemented (while put_FirstName is implemented)? See http://docs.activestate.com/activepython/2.5/pywin32/PyIADsUser.html. Thanks, Arve ___ python-win32 mailing list python-win32@python.org

[python-win32] IADsContainer.GetObject returns objects of different type than IADsContainer.Create

2009-08-03 Thread Arve Knudsen
Hello I am thoroughly confused by win32com.adsi at this point. Right now I am finding that IADsContainer.GetObject returns objects of a different type than IADsContainer.Create, that expose only a subset of the expected methods! For instance I have to set the members of a group, using the method

Re: [python-win32] MSHTML wrapper class and example using IWebBrowser2

2009-08-03 Thread lkcl
as promised the mshtml.py loader, _mshtml.py wrapper and the experiment ie_in_win.py have been committed here: http://pyjamas.svn.sourceforge.net/viewvc/pyjamas/trunk/pyjd/ -- View this message in context:

Re: [python-win32] IADsContainer.GetObject returns objects of different type than IADsContainer.Create

2009-08-03 Thread Tim Roberts
Arve Knudsen wrote: I am thoroughly confused by win32com.adsi at this point. Right now I am finding that IADsContainer.GetObject returns objects of a different type than IADsContainer.Create, that expose only a subset of the expected methods! How do you know? Are you using dir() to look at

Re: [python-win32] IADsContainer.GetObject returns objects of different type than IADsContainer.Create

2009-08-03 Thread Arve Knudsen
Well, for one the representations of the objects returned by the two methods are different and with one type I can access .PutEx but not with the other. Arve On 8/3/09, Tim Roberts t...@probo.com wrote: Arve Knudsen wrote: I am thoroughly confused by win32com.adsi at this point. Right now I