vote up 1 vote down star
1

The Windows API provides an API GetDesktopWindow( ) which returns the window handle

But I tested with Spy++ and I find that the window handle of the desktop and the window handle of the "Windows Desktop" is not the same.

As the "Windows Desktop" is a list view, do I need to do the following

1) HANDLE hWnd = GetDesktopWindow() ;
2) FindWindow(hWnd, ..... ) with the SyslistView32 as the Window class.

Once I get the Window handle, I want to use SendMessage() for operations like getting selected file name, the number of files selected , etc.

Please give your opinions. I am doing this using the Windows SDk

flag

27% accept rate
Maybe you could edit the question with more information about what you intend to do with the handle once you have it? – Mark Ransom Nov 3 at 18:16
Note that the objects on the XP/Vista/7 desktops are NOT files. For instance, common objects found there are "My Computer" and the "Recycle Bin". Those are known by their PIDLs. A PIDL is a generalization of a filename. You're probably therefore interested in selected PIDLs. – MSalters Nov 4 at 16:01
So if I copy a document eg "Questions.doc" ( a Word document ) do I need to get the PIDL for that , or do I get it as a file. – Sujay Ghosh Nov 5 at 11:16

1 Answer

vote up 4 vote down

If you want the Desktop window as defined in GetDesktopWindow(), use that window handle. This is the window handle you should use to look for top-level windows and other related activities.

What you're seeing in Spy++ is just the content drawn as the desktop in your session. If you use the auto-locate in Spy++, you'll see that the SysListView32-declared window is a child window of your explorer shell. It is quite infrequent for someone to need access to this window. Also, the existence of this window may be subject to changes between versions of windows.

Edit (additional info)

If you are looking to interact or place things on the actual shell desktop, you may be better served by other APIs. Here are two such APIs that can accomplish this, depending on the target version of windows.

Windows Sidebar @ MSDN
This is available on Vista and Windows 7

Using the Active Desktop @ MSDN
This is available on Windows 2000 and XP, although frequently disabled by users and sysadmins.

link|flag
But Spy++ also returns the handle of the window, and the handle retunred by Spy++ and the GetDesktopWindow is different – Sujay Ghosh Nov 4 at 5:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.