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, wh

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

2008-04-22 Thread Larry Bates
Daniel Gonçalves wrote: Larry Bates wrote: Daniel Gonçalves wrote: Hi! I need to find the selected file(s) in a Windows Explorer window from another program (I'd look at the window that last had focus). Daniel, What do you mean by "find the selected files". Give us a little more detail

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

2008-04-22 Thread Tim Roberts
Daniel Gonçalves wrote: Hi! I need to find the selected file(s) in a Windows Explorer window from another program (I'd look at the window that last had focus). I found something in the following page that should do the trick: http://blogs.msdn.com/oldnewthing/archive/2004/07/20/188696.aspx How

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

2008-04-22 Thread Tim Roberts
Michel Claveau wrote: Hi! Since Vista, Windows-Explorer and Internet-Explorer are separate. Previously it was possible to drive Windows-Explorer via COM. Vista made that impossible. They have ALWAYS been separate. No shared code. The only thing they had in common was one word in the name.

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

2008-04-22 Thread Daniel Gonçalves
Larry Bates wrote: Daniel Gonçalves wrote: Hi! I need to find the selected file(s) in a Windows Explorer window from another program (I'd look at the window that last had focus). Daniel, What do you mean by "find the selected files". Give us a little more detail about your use case and

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

2008-04-22 Thread Larry Bates
Daniel Gonçalves wrote: Hi! I need to find the selected file(s) in a Windows Explorer window from another program (I'd look at the window that last had focus). I found something in the following page that should do the trick: http://blogs.msdn.com/oldnewthing/archive/2004/07/20/188696.aspx How

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

2008-04-22 Thread Michel Claveau
Hi! Since Vista, Windows-Explorer and Internet-Explorer are separate. Previously it was possible to drive Windows-Explorer via COM. Vista made that impossible. IMO, you must seek another way that COM. Sorry. Michel Claveau ___ python-win32 mailing

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

2008-04-22 Thread Rickey, Kyle W
rovide a better response. -Kyle Rickey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Gonçalves Sent: Tuesday, April 22, 2008 3:51 AM To: python-win32@python.org Subject: [python-win32] Finding the selected file in Windows Explorer Hi! I need to

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

2008-04-22 Thread Daniel Gonçalves
Hi! I need to find the selected file(s) in a Windows Explorer window from another program (I'd look at the window that last had focus). I found something in the following page that should do the trick: http://blogs.msdn.com/oldnewthing/archive/2004/07/20/188696.aspx However, it is not Python an