[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
[email protected] 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. Thank

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, lkcl wrote: > > hi there, > > from about a dozen different sources i've managed to put together something > similar to the old c

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 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 build. you start with p

[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 [email protected] h

[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 P

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: http://www.nabble.com/MSHTML-wrapper-class-and-example-using-IWebBrowser2-tp24782740p

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

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 wrote: > Arve Knudsen wrote: >> >> I am thoroughly confused by win32com.adsi at this point. Right now I >> am findi

[python-win32] Dealing with windows in Windows

2009-08-03 Thread Kimmo Kekkonen
Hi! I were wondering if it is possible to use Python to select a window (by title or somehow) and then input text into it? I'd need the trick to input text to program I am running from cmd. When program opens it also opens one "GUI" window and focus to the cmd will lost. Now I'd like to get fo