views:

58

answers:

2

I'm new to windows programming (any win 32 API). I want to create a windows application that listens to the clipborad all the time and reacts to keyboard shortcuts (for example you copy text from the ClipBoard and press Ctrl-F and something is done on the text in the clipboard). I know how to make a window app in win32 and in C# (.NET) but it's a windowed application which has a window and appears in the window panel. I want an pplication that will only be visible in the taskbar right part so you can close it (like most antivirus do) and keeps on running from start will it's closed.

Anyone got some code template, or can reffer me to a tutorial ? i don't mind if it's C\C+ or C#.

10x.

+3  A: 

It can be another windows application in which the form's ShowInTaskbar property is set to false and you add a NotifyIcon component to put it into tray. Here is an article from CodeProject. You can find many more on codeproject or on other programming related sites.

TheVillageIdiot
thanks! i think this is what i was looking for.
codeScriber
A: 

You may find this useful, although it's in C. Or this in C#.

Armen Tsirunyan
thanks tose are also good
codeScriber