Re: [python-win32] Win32Cred build errors

2008-11-27 Thread Mark Hammond
> From the web page for the SDK I have. "This release of the SDK is intended to > replace the Windows SDK for Vista." > But this only appears to be 0x500 rather than 0x501. > Hence my confusion. There is some confusion regarding these versions. In the Vista SDK, you will find declarations along

Re: [python-win32] OnBeforeNavigate2 - resolution and a question

2008-11-27 Thread Mark Hammond
> Question: > If I understand correctly this python callback implementation is IE > implementation dependent. If some new version of IE will start to call > this callback with [lets say]4 "by_ref" params only. Then this will > stop work. > > Is it possible to write python code independent of numb

Re: [python-win32] vtable interface implementation in python

2008-11-27 Thread Mark Hammond
> Can I do the implementation of this interface in python using above? > The implementation the would be then passesed to other COM object. That should be fine - check out "*pippo*" in the win32com directory for some examples... Cheers, Mark ___ pyt

Re: [python-win32] Win32Cred build errors

2008-11-27 Thread Dave Cross
Thanks Mark, >From the web page for the SDK I have. "This release of the SDK is intended to replace the Windows SDK for Vista." But this only appears to be 0x500 rather than 0x501. Hence my confusion. I get further confused when resetting the #define in win32credmodule.cpp has no effect. What's

[python-win32] OnBeforeNavigate2 - resolution and a question

2008-11-27 Thread Vaclav Opekar
Hello all, some time ago was trying to implement OnBeforeNavigate2 callback in python. (DWebBrowserEvents2 - http://msdn.microsoft.com/en-us/library/aa768283(VS.85).aspx) BeforeNavigate2 has 7 parameters, 1 marked as [in,out] and the rest 6 as [in] only. The one out parameter (Cancel) contro

[python-win32] vtable interface implementation in python

2008-11-27 Thread Vaclav Opekar
Hi all, Since I'm trying to avoid writing C++ glue code for my python application, I was wondering whether it's possible to implement vtable interface in python. From IDL file I've generated a TLB, from TLB I've generated a python stub using makepy. I got .py file with vtable description