views:

31

answers:

1

Is it possible to combine two dialogs on taskbar in windows 7 fashion, if one of them is an unmanaged window.

For example - I have a setup project and CustomActions library written on managed code. I'm opening a form in my CustomInstaller class. I know it's sounds crazy, but I suppose there is a way to combine them together on the taskbar. I don't like the way they look on taskbar right now - like two different apps.

+1  A: 

They need the same Application ID. You can set it with an API call. The Code Pack is the easiest way to do it from C#.

Kate Gregory
Thanks, I will try that
Ike