[python-win32] Accessing a Remote Registry....

2008-04-27 Thread Tom Moulton
Much obliged. Worked like a champ, but you already knew that! ;-) Tom ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

[python-win32] Accessing a Remote Registry....

2008-04-27 Thread Tom Moulton
Much obliged. Worked like a champ, but you already knew that! ;-) Tom ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

[python-win32] platform.release() and Vista

2008-04-27 Thread le dahut
Hello, I want to detect the version of windows (2K, XP, Vista). Therefore I used platform.release() but it doesn't work on Vista. Has anyone noticed this before ? ___ python-win32 mailing list python-win32@python.org

Re: [python-win32] Finding the selected file in Windows Explorer

2008-04-27 Thread Mark Hammond
What leads you to say this? Do you have a reference? Windows Explorer in Vista has been substantially modified, but I have not read of any breaking changes in the shell interface. A few of the interfaces have been dropped - IColumn* comes to mind. Michel may have been referring to DDE,

Re: [python-win32] QueryInterface fails with object passed from VB

2008-04-27 Thread jose simas
Hi Mark, Thanks for the answer, I tried using the IViewDataView's uiid like this (probably in a naive way): y = view.QueryInterface({8D2AD79B-1ADD-4181-BAD4-FF0672A9B6E3}) But that produces the error on that line. com_error: (-2147221005, 'Invalid class string', None, None) I read that I can

Re: [python-win32] QueryInterface fails with object passed from VB

2008-04-27 Thread Mark Hammond
Hi Mark, Thanks for the answer, I tried using the IViewDataView's uiid like this (probably in a naive way): y = view.QueryInterface({8D2AD79B-1ADD-4181-BAD4-FF0672A9B6E3}) But that produces the error on that line. com_error: (-2147221005, 'Invalid class string', None, None) Hrm -

Re: [python-win32] QueryInterface fails with object passed from VB

2008-04-27 Thread jose simas
Unfortunately got the same error ('Invalid class string') with 'pywintypes.IID({... You mention not supporting IDispatch but this interface inherits IDispatch. Here is a snippet from it's IDL: [ odl, uuid(8D2AD79B-1ADD-4181-BAD4-FF0672A9B6E3), version(1.0), dual,

Re: [python-win32] QueryInterface fails with object passed from VB

2008-04-27 Thread Mark Hammond
Unfortunately got the same error ('Invalid class string') with 'pywintypes.IID({... That is strange - it appears the object itself is throwing that error code. E_NOINTERFACE is generally the only expected error code for QI. You mention not supporting IDispatch but this interface inherits