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,