Windows service

  • Thread starter Thread starter BlueIce
  • Start date Start date
B

BlueIce

Hello
I am going to write some application that catch the
control key press and exchanges it on Alt ;) I need
it,because of language. I don't know how to use key
events in windows services :( Some code example will be
very usefull.
BlueIce
 
Hello
I am going to write some application that catch the
control key press and exchanges it on Alt ;) I need
it,because of language. I don't know how to use key
events in windows services :( Some code example will be
very usefull.
BlueIce

If this is global to the system, then you won't be able to do it from
VB.NET, or C# for that matter - at least not completly. What you are
refering to is called a Hook, and system wide hooks require that they
are implemented in a standard dll - the kind you need to use C/C++ to
create (actually, Delphi or assembly works as well :).
 
Back
Top