My program looks like that:

ComPtr<ITrayDeskBand> spTrayDeskBand;
CoInitialize(NULL);
HRESULT hr = spTrayDeskBand.CoCreateInstance(CLSID_TrayDeskBand);

hr = spTrayDeskBand->IsDeskBandShown(CLSID_MyDeskBand);
ATLASSERT(SUCCEEDED(hr));

if(SUCCEEDED(hr) && hr == S_FALSE)
  hr = spTrayDeskBand->ShowDeskBand(CLSID_MyDeskBand);

after i call the show deskband - i get a popup "do you want the MyDeskband bar toolbar on your taskbar?

i want to prevent this message to appears ... how can i do that ?

Thanks,

link|improve this question

0% accept rate
feedback

2 Answers

You cannot suppress the dialog. The dialog is there specifically to avoid programs jamming themselves into the taskbar without permission from the user.

link|improve this answer
Pokki (pokki.com) are doing just that - they suppress the dialog. – Eldad Mor Nov 17 '11 at 11:36
1  
Okay, let me phrase it more precisely. You cannot suppress the dialog via supported documented APIs. – Raymond Chen Nov 17 '11 at 14:59
feedback

Don't do that. It is not supported behavior.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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