The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

I want to create a DeskBand. Do I have to use C++?

I want to create a DeskBand to display some information on my Windows task bar, but I am struggling with implementing the functionality I need in C++. It's been about 10-15 years since I touched C++. ...
0
votes
0answers
24 views

Taskbar. Notify icon area. Highlighting Icon on mouse hover

Good day to all mega programmers :) I wrote my deskband object like "Du Meter" application (link) but there are some differences. How to get "icon" when mouse is entering on this control, like this ...
0
votes
0answers
45 views

BrowserHelperObject & Deskband installation

I have a BrowserHelperObject and a Deskband component, based on .NET 4, compiled into the same DLL. I have tested them by using regasm.exe to register and unregister the components. Registering them ...
0
votes
0answers
175 views

Adding my own interface to a deskband

I'm using Visual Studio 2010 on Windows 7 SP1 x64. I need to make a custom deskband that communicates with a win32 application, compiled as 32bit app. I used this CodeProject article as a starting ...
10
votes
1answer
821 views

How to make my Deskband's (Taskbar Toolbar) Form transparent

I'm working on a Windows Deskband in Delphi XE2 for Windows XP, Vista and 7 (Win32 and Win64)... I've implemented all the necessary interfaces (ITrayDeskBand, IDeskBandInfo, IDeskBand2, IDeskBand) in ...
1
vote
1answer
173 views

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

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 ...
0
votes
1answer
311 views

deskband toolbar button is not showing when IE protected mode is enabled

I have developed an add-on button that sends a tcp message to another process with the URL of the current tab. That's all it does Since my experience is limited to managed code, I have used this ...
0
votes
1answer
101 views

deskband can not be modified

I have created a deskband followed by the tutorial on codeproject (http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx). After I installed the deskband, I realized there is something need to ...
0
votes
1answer
781 views

Deskband in Windows 7 x64 C#?

I want to create a deskband app, like BatteryBar, in C#. I understand that the deskband might not work in future versions of windows, that you shouldn't code explorer extensions in managed code, and ...
0
votes
1answer
2k views

How to make DeskBands work on Windows 7 x64?

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 ...
0
votes
1answer
2k views

Deskband for Windows 7

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. ...
1
vote
1answer
2k views

How to force GDI+ rendering of a ComboBox in C# on a DeskBand Taskbar Toolbar? (transparency issue)

I've implemented a DeskBand Taskbar Toolbar using the BandObjectLib (Extending Explorer with Band Objects using .NET and Windows Forms) from Codeproject, modified with support for the IDeskBand2 ...
0
votes
2answers
1k views

Activate IE Add-Ons from an BHO

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 ...
2
votes
6answers
2k views

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

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 ...