deskband

How to add and implement a new interface to an Inproc COM server

淺唱寂寞╮ 提交于 2019-12-24 06:37:28
问题 I've implemented a windows deskband (using the windows SDK sample) and need a way to communicate (one call to start IPC with another application, IPC is already working) with it. My COM experience is very limited but extrapolating from what I've seen, I think it should be possible to create a new COM interface, implement it in the deskband object (which I have access to via IBandSite), call QueryInterface() for my own interface on it and then use it to call directly into the deskband. I've

Activate IE Add-Ons from an BHO

为君一笑 提交于 2019-12-20 07:27:45
问题 I've written two objects, a deskband toolbar and a bho for IE. The goal is that the bho shows up the toolbar after installation. Microsoft's approach is to use pBrowser->ShowBrowserBar(&vtBandGUID, &vtShow, 0); This method is nice to show and hide toolbars which got already activated via the addon manager but does not work for deactivated addons. Is there a way to do exactly the same thing as the addon manager does (enabling / disabling specific addons) just programmatically? 回答1: You should

Deskband for Windows 7

旧巷老猫 提交于 2019-12-11 17:35:49
问题 I have created a deskband for Windows XP after following the tutorial in codeproject. It works perfect. However, some of the users use Windows 7 and they found they cannot use the deskband I created. Could anyone let me know how to fix the problem? Update: After the Windows 7 users installed the deskband (msi file), they cannot see it in the windows toolbars (right click mouse on taskbar > toolbars > ). The deskband is visible in the toolbar in the IE in Windows 7 though (The BandObject

Activate IE Add-Ons from an BHO

微笑、不失礼 提交于 2019-12-02 09:33:32
I've written two objects, a deskband toolbar and a bho for IE. The goal is that the bho shows up the toolbar after installation. Microsoft's approach is to use pBrowser->ShowBrowserBar(&vtBandGUID, &vtShow, 0); This method is nice to show and hide toolbars which got already activated via the addon manager but does not work for deactivated addons. Is there a way to do exactly the same thing as the addon manager does (enabling / disabling specific addons) just programmatically? You should clarify your question. Writing code to activate add-ons that the user has specifically disabled could be

How can I programatically tell Windows taskbar to open (or close) a given toolbar?

元气小坏坏 提交于 2019-11-30 18:58:00
问题 I have written a toolbar that runs on the taskbar. Unfortunately, after it is installed, the user has to enable it manually. Is there a way to tell explorer to open (or close) a given toolbar? I would like for the installer, NSIS, to turn on the toolbar when the installation is complete (I realize that a plugin would be necessary). I also want to know if it's possible to automatically enable a toolbar for all users, for example in a corporate environment where multiple users would share a PC.

How to make DeskBands work on Windows 7 x64?

一世执手 提交于 2019-11-28 14:37:32
I'm going to create an application (C#), which has its DeskBand on the Windows TaskBar. I've found one complete example program, which does this, but I didn't manage to successfully install (add to Toolbars menu on the taskbar) it. I think, it's because my Windows is x64, there are no other visible reasons... So, my question is how to create and add a deskband to Windows 7 x64 taskbar? According to Microsoft, Deskbands are not recommended for Windows 7 , although they still work. Also keep in mind that Microsoft requires that Deskbands support Aero on Windows 7 via IDeskband2 Interface, rather

How to make DeskBands work on Windows 7 x64?

女生的网名这么多〃 提交于 2019-11-27 08:47:56
问题 I'm going to create an application (C#), which has its DeskBand on the Windows TaskBar. I've found one complete example program, which does this, but I didn't manage to successfully install (add to Toolbars menu on the taskbar) it. I think, it's because my Windows is x64, there are no other visible reasons... So, my question is how to create and add a deskband to Windows 7 x64 taskbar? 回答1: According to Microsoft, Deskbands are not recommended for Windows 7, although they still work. Also