taskbar

how to acquire list of notification area icons?

i'm attempting to get code to list of all icons visible in the notification area, to the left of the time. i've been experimenting with EnumDesktopWindows and GetWindowLong, without finding any way to single out the system tray icons. thanks! ...

C# Drag and drop to application taskbar icon

Is it possible to drag and drop (files, text) to the taskbar icon of a WindowsForms application (C#)? I know there's no easy way to do it for the tray icon (it involves using Win32 API and hooks), but I was wondering if it's possible for the taskbar. ...

DoDragDrop() to windows 7 taskbar

I am trying to allow drag&drop from my program (winforms) to windows 7 taskbar (pin my program), without success. What am I doing wrong? DataObject objData = new DataObject(); objData.SetData(DataFormats.FileDrop, true, new string[] { Application.ExecutablePath }); ((Control)sender).DoDragDrop(objData, DragDropEffects.Link); ...

How to not have a MainForm in Delphi?

i've been trying to get some modeless forms in my application to appear on the taskbar - taking advantage of the new useful taskbar in Windows 7. There's are many issues with the VCL that need to be undone before a form can exist on the taskbar. But the final issue is that minimizing the form that the VCL has designated the main form c...

Creating a Windows 7 Taskbar Icon

My Goal I want to make it so that, on first run, my program will make its icon appear in the Windows 7 Taskbar. I know that the icon files are shortcuts in C:\Users\USERNAME\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar and mostly want to know this: My Questions How, in Java, can I create a shortcut...

Windows 7 Taskbar: Capture thumbnails

Is it possible to capture the 'live' thumbnails from the Win7 taskbar? I want to display this preview (of another window) in my application, but how to extract those previews using .NET? ...

Qt Hide Taskbar Item

I have a custom QWidget and I simple don't want it to show up in the taskbar. I have a QSystemTrayIcon for managing exiting/minimizing etc. ...

Enumerate windows on taskbar in Windows XP without P/Invoke using C#

Is there any method of retrieving only windows on the taskbar? I want to make a custom "taskbar" that will group APPs in any order (not just in common order like default windows task grouping). ...